From 7620775586f2746c77ffb391162094de901fb4b0 Mon Sep 17 00:00:00 2001 From: Tim McCormack Date: Tue, 27 Sep 2022 18:42:31 +0000 Subject: [PATCH] docs: Bump version to 1.x to acknowledge that this is in use in production (#123) According to semver, 0.x versions may have breaking changes at any time, and there's no way to communicate them via the version number until the version is at least 1.0.0. Since this is in active use now, we should bump to 1.0.0. --- CHANGELOG.rst | 4 ++++ openedx_events/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c2f662d4..a7de571a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -13,7 +13,11 @@ Change Log Unreleased ---------- + +[1.0.0] - 2022-09-27 +-------------------- * **Breaking Change**: Updated from ``Django 2.0`` to ``Django 3.0``. +* Bump version to 1.x to acknowledge that this is in use in production [0.14.0] - 2022-09-21 --------------------- diff --git a/openedx_events/__init__.py b/openedx_events/__init__.py index d87380af..8e5f3c0b 100644 --- a/openedx_events/__init__.py +++ b/openedx_events/__init__.py @@ -5,4 +5,4 @@ more information about the project. """ -__version__ = "0.14.0" +__version__ = "1.0.0" diff --git a/setup.cfg b/setup.cfg index cb7ec4f9..3ef15648 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.13.0 +current_version = 1.0.0 commit = True tag = True