Skip to content
This repository was archived by the owner on Jun 18, 2024. It is now read-only.

Commit aed8b6c

Browse files
committed
Bump version
1 parent a0dd7d6 commit aed8b6c

File tree

2 files changed

+32
-16
lines changed

2 files changed

+32
-16
lines changed

CHANGELOG.txt

Lines changed: 31 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,22 @@ Semantic Versioning [2].
99
Unreleased [3]
1010
----------
1111

12-
v0.3.2 – 2018-12-01 [4]
12+
v0.3.3 - 2019-02-25 [4]
13+
-------------------
14+
Added
15+
- Documentation
16+
- TODO and CHANGELOG formatting
17+
- docutils.conf
18+
- sitemap
19+
- Canonical URL
20+
- robots.txt
21+
22+
Changed
23+
- Changed SafeConfigParser to ConfigParser
24+
- Reversed test logic in _log_timeout to avoid popping off on an empty
25+
stack. This bug was leading to fatal crashes.
26+
27+
v0.3.2 – 2018-12-01 [5]
1328
-------------------
1429
Added
1530
- CHANGELOG.rst
@@ -20,7 +35,7 @@ Changed
2035
- References to Github repo changed to point to git.danielmoch.com
2136
- Fixed exception in nncli sync
2237

23-
v0.3.1 – 2018-10-30 [5]
38+
v0.3.1 – 2018-10-30 [6]
2439
-------------------
2540
Added
2641
- Partial unit testing for nncli.py module
@@ -29,30 +44,30 @@ Changed
2944
- Refactored code (addressing pylint findings)
3045
- Fixed bad exception handling in Python 3.4
3146

32-
v0.3.0 – 2018-09-07 [6]
47+
v0.3.0 – 2018-09-07 [7]
3348
-------------------
3449
Added
3550
- Documentation as PDF format
3651

3752
Changed
3853
- Numerous documentation corrections
3954

40-
v0.2.0 – 2018-09-03 [7]
55+
v0.2.0 – 2018-09-03 [8]
4156
-------------------
4257
Added
4358
- .travis.yml
4459
- Pytest, tox, et all added to support automated testing
4560
- Both tox and Travis testing back to Python 3.4
4661

47-
v0.1.2 – 2018-08-30 [8]
62+
v0.1.2 – 2018-08-30 [9]
4863
-------------------
4964
Added
5065
- Support for --version flag
5166

5267
Changed
5368
- requirements.txt replaced with Pipfile{,.lock}
5469

55-
v0.1.1 – 2018-08-07 [9]
70+
v0.1.1 – 2018-08-07 [10]
5671
-------------------
5772
Added
5873
- README content included in PyPI
@@ -65,12 +80,13 @@ v0.1.0 – 2018-07-31
6580
-------------------
6681
- Hard fork of sncli
6782

68-
[1] - https://keepachangelog.com/en/1.0.0/
69-
[2] - https://semver.org/spec/v2.0.0.html
70-
[3] - https://git.danielmoch.com/nncli/diff/?id=master&id2=v0.3.2
71-
[4] - https://git.danielmoch.com/nncli/diff/?id=v0.3.2&id2=v0.3.1
72-
[5] - https://git.danielmoch.com/nncli/diff/?id=v0.3.1&id2=v0.3.0
73-
[6] - https://git.danielmoch.com/nncli/diff/?id=v0.3.0&id2=v0.2.0
74-
[7] - https://git.danielmoch.com/nncli/diff/?id=v0.2.0&id2=v0.1.2
75-
[8] - https://git.danielmoch.com/nncli/diff/?id=v0.1.2&id2=v0.1.1
76-
[9] - https://git.danielmoch.com/nncli/diff/?id=v0.1.1&id2=v0.1.0
83+
[1] - https://keepachangelog.com/en/1.0.0/
84+
[2] - https://semver.org/spec/v2.0.0.html
85+
[3] - https://git.danielmoch.com/nncli/diff/?id=master&id2=v0.3.3
86+
[4] - https://git.danielmoch.com/nncli/diff/?id=v0.3.3&id2=v0.3.2
87+
[5] - https://git.danielmoch.com/nncli/diff/?id=v0.3.2&id2=v0.3.1
88+
[6] - https://git.danielmoch.com/nncli/diff/?id=v0.3.1&id2=v0.3.0
89+
[7] - https://git.danielmoch.com/nncli/diff/?id=v0.3.0&id2=v0.2.0
90+
[8] - https://git.danielmoch.com/nncli/diff/?id=v0.2.0&id2=v0.1.2
91+
[9] - https://git.danielmoch.com/nncli/diff/?id=v0.1.2&id2=v0.1.1
92+
[10] - https://git.danielmoch.com/nncli/diff/?id=v0.1.1&id2=v0.1.0

nncli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# -*- coding: utf-8 -*-
22
"""NextCloud Notes Command Line Interface"""
33

4-
__version__ = '0.3.2'
4+
__version__ = '0.3.3'

0 commit comments

Comments
 (0)