diff --git a/c/CHANGELOG.rst b/c/CHANGELOG.rst index 0b2288f..e72d0c2 100644 --- a/c/CHANGELOG.rst +++ b/c/CHANGELOG.rst @@ -1,5 +1,5 @@ -------------------- -[2.0.0] - 2020-XX-XX +[2.0.0] - 2020-05-23 -------------------- - Major file version bumped because new fields were added to the kastore_t diff --git a/c/kastore.h b/c/kastore.h index 12d04fb..cfaa900 100644 --- a/c/kastore.h +++ b/c/kastore.h @@ -131,7 +131,7 @@ to the file format. #define KAS_FILE_VERSION_MAJOR 1 /** The file version minor number. Incremented when non-breaking backward-compatible -changes are madeto the file format. +changes are made to the file format. */ #define KAS_FILE_VERSION_MINOR 0 /** @} */ diff --git a/python/CHANGELOG.rst b/python/CHANGELOG.rst index 2943b49..b4e83a9 100644 --- a/python/CHANGELOG.rst +++ b/python/CHANGELOG.rst @@ -1,5 +1,5 @@ -------------------- -[0.3.0] - 2020-XX-XX +[0.3.0] - 2020-05-23 -------------------- **New features** @@ -16,6 +16,8 @@ - The ``filename`` named argument to load/dump has been changed to ``file`` to reflect the support for file objects. +- Minimum python version is now 3.6. + -------------------- [0.2.2] - 2018-12-07 -------------------- diff --git a/python/kastore/_version.py b/python/kastore/_version.py index eb89d85..86e58cb 100644 --- a/python/kastore/_version.py +++ b/python/kastore/_version.py @@ -1,2 +1,2 @@ # Definitive location for the version number. -kastore_version = "0.2.2" +kastore_version = "0.3.0"