commit aed8b6c45bf8fef592b6b1a70129170eb468ee38
parent a0dd7d623db18f41a77975f669107f553bddf5ab
Author: Daniel Moch <daniel@danielmoch.com>
Date: Mon, 25 Feb 2019 06:30:27 -0500
Bump version
Diffstat:
2 files changed, 32 insertions(+), 16 deletions(-)
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
@@ -9,7 +9,22 @@ Semantic Versioning [2].
Unreleased [3]
----------
-v0.3.2 – 2018-12-01 [4]
+v0.3.3 - 2019-02-25 [4]
+-------------------
+Added
+- Documentation
+ - TODO and CHANGELOG formatting
+ - docutils.conf
+ - sitemap
+ - Canonical URL
+ - robots.txt
+
+Changed
+- Changed SafeConfigParser to ConfigParser
+- Reversed test logic in _log_timeout to avoid popping off on an empty
+ stack. This bug was leading to fatal crashes.
+
+v0.3.2 – 2018-12-01 [5]
-------------------
Added
- CHANGELOG.rst
@@ -20,7 +35,7 @@ Changed
- References to Github repo changed to point to git.danielmoch.com
- Fixed exception in nncli sync
-v0.3.1 – 2018-10-30 [5]
+v0.3.1 – 2018-10-30 [6]
-------------------
Added
- Partial unit testing for nncli.py module
@@ -29,7 +44,7 @@ Changed
- Refactored code (addressing pylint findings)
- Fixed bad exception handling in Python 3.4
-v0.3.0 – 2018-09-07 [6]
+v0.3.0 – 2018-09-07 [7]
-------------------
Added
- Documentation as PDF format
@@ -37,14 +52,14 @@ Added
Changed
- Numerous documentation corrections
-v0.2.0 – 2018-09-03 [7]
+v0.2.0 – 2018-09-03 [8]
-------------------
Added
- .travis.yml
- Pytest, tox, et all added to support automated testing
- Both tox and Travis testing back to Python 3.4
-v0.1.2 – 2018-08-30 [8]
+v0.1.2 – 2018-08-30 [9]
-------------------
Added
- Support for --version flag
@@ -52,7 +67,7 @@ Added
Changed
- requirements.txt replaced with Pipfile{,.lock}
-v0.1.1 – 2018-08-07 [9]
+v0.1.1 – 2018-08-07 [10]
-------------------
Added
- README content included in PyPI
@@ -65,12 +80,13 @@ v0.1.0 – 2018-07-31
-------------------
- Hard fork of sncli
-[1] - https://keepachangelog.com/en/1.0.0/
-[2] - https://semver.org/spec/v2.0.0.html
-[3] - https://git.danielmoch.com/nncli/diff/?id=master&id2=v0.3.2
-[4] - https://git.danielmoch.com/nncli/diff/?id=v0.3.2&id2=v0.3.1
-[5] - https://git.danielmoch.com/nncli/diff/?id=v0.3.1&id2=v0.3.0
-[6] - https://git.danielmoch.com/nncli/diff/?id=v0.3.0&id2=v0.2.0
-[7] - https://git.danielmoch.com/nncli/diff/?id=v0.2.0&id2=v0.1.2
-[8] - https://git.danielmoch.com/nncli/diff/?id=v0.1.2&id2=v0.1.1
-[9] - https://git.danielmoch.com/nncli/diff/?id=v0.1.1&id2=v0.1.0
+[1] - https://keepachangelog.com/en/1.0.0/
+[2] - https://semver.org/spec/v2.0.0.html
+[3] - https://git.danielmoch.com/nncli/diff/?id=master&id2=v0.3.3
+[4] - https://git.danielmoch.com/nncli/diff/?id=v0.3.3&id2=v0.3.2
+[5] - https://git.danielmoch.com/nncli/diff/?id=v0.3.2&id2=v0.3.1
+[6] - https://git.danielmoch.com/nncli/diff/?id=v0.3.1&id2=v0.3.0
+[7] - https://git.danielmoch.com/nncli/diff/?id=v0.3.0&id2=v0.2.0
+[8] - https://git.danielmoch.com/nncli/diff/?id=v0.2.0&id2=v0.1.2
+[9] - https://git.danielmoch.com/nncli/diff/?id=v0.1.2&id2=v0.1.1
+[10] - https://git.danielmoch.com/nncli/diff/?id=v0.1.1&id2=v0.1.0
diff --git a/nncli/__init__.py b/nncli/__init__.py
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
"""NextCloud Notes Command Line Interface"""
-__version__ = '0.3.2'
+__version__ = '0.3.3'