summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Willhaus <mail@janwillhaus.de>2019-05-19 10:02:55 +0200
committerGitHub <noreply@github.com>2019-05-19 10:02:55 +0200
commitbf0639aa4da5696c270b8d5ef0c15ff0536563a5 (patch)
tree810a7274a5b14a7362bef7287ec6d13001b39812
parentce2fee4183156270c5bf6316ca091016f2061ff5 (diff)
downloadwarlock-bf0639aa4da5696c270b8d5ef0c15ff0536563a5.tar.gz
Release 1.3.1 (#36)1.3.1
* Bump version * Add changelog framing * Prepare changelog for release
-rw-r--r--CHANGELOG.md52
-rw-r--r--setup.py2
2 files changed, 53 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..9026e44
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,52 @@
+# Changelog
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
+and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+
+## [Unreleased]
+
+## [1.3.1] - 2019-05-19
+### Added
+- Travis CI test support for Python 3.6, and 3.7
+- More project metadata to properly list on PyPi
+
+### Removed
+- Travis CI test runs for Python 2.6, and 3.3
+
+### Changed
+- Requirement for jsonschema library extended to version `<4`
+- Conform to Black codestyle
+- Move unittests to `tests/` directory
+
+### Fixed
+- README formatting (codeblocks showing correctly)
+
+## [1.3.0] - 2016-06-25
+
+## [1.2.0] - 2015-10-12
+
+## [1.1.0] - 2013-11-19
+
+## [1.0.1] - 2013-06-28
+
+## [1.0.0] - 2013-04-26
+
+## [0.8.2] - 2013-03-25
+
+## [0.8.1] - 2013-01-31
+
+## [0.8.0] - 2013-01-21
+
+## [0.7.0] - 2012-11-26
+[Unreleased]: https://github.com/bcwaldon/warlock/compare/v1.3.1...HEAD
+[1.3.1]: https://github.com/bcwaldon/warlock/compare/v1.3.0...v1.3.1
+[1.3.0]: https://github.com/bcwaldon/warlock/compare/1.2.0...1.3.0
+[1.2.0]: https://github.com/bcwaldon/warlock/compare/1.1.0...1.2.0
+[1.1.0]: https://github.com/bcwaldon/warlock/compare/1.0.1...1.1.0
+[1.0.1]: https://github.com/bcwaldon/warlock/compare/1.0.0...1.0.1
+[1.0.0]: https://github.com/bcwaldon/warlock/compare/0.8.2...1.0.0
+[0.8.2]: https://github.com/bcwaldon/warlock/compare/0.8.1...0.8.2
+[0.8.1]: https://github.com/bcwaldon/warlock/compare/0.8.0...0.8.1
+[0.8.0]: https://github.com/bcwaldon/warlock/compare/0.7.0...0.8.0
+[0.7.0]: https://github.com/bcwaldon/warlock/releases/tag/0.7.0
diff --git a/setup.py b/setup.py
index 2a4ee02..a6369c1 100644
--- a/setup.py
+++ b/setup.py
@@ -30,7 +30,7 @@ def read(fname):
setuptools.setup(
name="warlock",
- version="1.3.0",
+ version="1.3.1",
description="Python object model built on JSON schema and JSON patch.",
long_description=read("README.md"),
long_description_content_type="text/markdown",