diff --git a/CHANGELOG.md b/CHANGELOG.md index 3431db7df..5150cd704 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,10 +8,13 @@ Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [1.1.0] - 2021-02-04 + ### Added - Support for Swift storage backend -- Use the `push` command `--force` option to ignore ES bulk import errors +- Use the `push` command `--ignore-errors` option to ignore ES bulk import + errors - The elasticsearch backend now accepts passing all supported client options ### Changed @@ -34,5 +37,6 @@ Versioning](https://semver.org/spec/v2.0.0.html). - Add optional sentry integration - Distribute Arnold's tray to deploy Ralph in a k8s cluster as cronjobs -[unreleased]: https://github.com/openfun/v1.0.0...master +[unreleased]: https://github.com/openfun/v1.1.0...master +[1.1.0]: https://github.com/openfun/ashley/compare/v1.0.0...v1.1.0 [1.0.0]: https://github.com/openfun/ashley/compare/3d03d85...v1.0.0 diff --git a/setup.cfg b/setup.cfg index 920cbef73..d8fc58fff 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ ;; [metadata] name = ralph-malph -version = 1.0.0 +version = 1.1.0 description = An OpenEdx's tracking logs processor to feed your LRS long_description = file:README.md long_description_content_type = text/markdown diff --git a/src/ralph/__init__.py b/src/ralph/__init__.py index 7574fd951..e49c541c6 100644 --- a/src/ralph/__init__.py +++ b/src/ralph/__init__.py @@ -1,3 +1,3 @@ """Ralph module""" -__version__ = "0.0.1" +__version__ = "1.1.0"