Skip to content
Commits on Source (3)
## [1.0.1](https://gitlab.ridgerun.com/open/ridgerun-microservices/analytics/compare/v1.0.0...v1.0.1) (2024-10-08)
### Bug Fixes
* Fix project information ([d279d8a](https://gitlab.ridgerun.com/open/ridgerun-microservices/analytics/commit/d279d8a7c5c7bf096b15f66f6a27e13f1321e545))
# 1.0.0 (2024-07-03)
......
## RidgeRun Analytics Microservice 1.0.0
## RidgeRun Analytics Microservice 1.0.1
Analytics Microservice reads the detection metadata from redis and executes the enabled actions.
......
......@@ -6,10 +6,10 @@ info:
over the metadata provided by the detection service over Redis.
contact:
email: support@ridgerun.com
version: 1.0.0
version: 1.0.1
externalDocs:
description: Find out more about Analytics Microservice
url: https://developer.ridgerun.com
url: https://developer.ridgerun.com/wiki/index.php/Metropolis_Microservices/RidgeRun_Services/Analytics
servers:
- url: http://127.0.0.1:5040
tags:
......
......@@ -15,7 +15,7 @@ import sys
project = 'Analytics Microservice'
copyright = '2024, RidgeRun, LLC'
author = 'RidgeRun, LLC'
release = '1.0.0'
release = '1.0.1'
sys.path.insert(0, os.path.abspath('../..'))
......
......@@ -21,7 +21,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setuptools.setup(
name="analytics",
version="1.0.0",
version="1.0.1",
author='RidgeRun LLC',
author_email='support@ridgerun.com',
description="RidgeRun Analytics Microservice",
......