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

Commit 9778857

Browse files
committed
Bump version
1 parent 19f1633 commit 9778857

File tree

2 files changed

+26
-16
lines changed

2 files changed

+26
-16
lines changed

CHANGELOG.txt

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

12-
v0.3.3 - 2019-02-25 [4]
12+
v0.3.4 - 2019-03-08 [4]
13+
-------------------
14+
Changed
15+
- Fix crashing bug in view_log.py
16+
- Refactor gui.py based on pylint findings
17+
18+
Removed
19+
- Pipfile.lock
20+
21+
v0.3.3 - 2019-02-25 [5]
1322
-------------------
1423
Added
1524
- Documentation
@@ -24,7 +33,7 @@ Changed
2433
- Reversed test logic in _log_timeout to avoid popping off on an empty
2534
stack. This bug was leading to fatal crashes.
2635

27-
v0.3.2 – 2018-12-01 [5]
36+
v0.3.2 – 2018-12-01 [6]
2837
-------------------
2938
Added
3039
- CHANGELOG.rst
@@ -35,7 +44,7 @@ Changed
3544
- References to Github repo changed to point to git.danielmoch.com
3645
- Fixed exception in nncli sync
3746

38-
v0.3.1 – 2018-10-30 [6]
47+
v0.3.1 – 2018-10-30 [7]
3948
-------------------
4049
Added
4150
- Partial unit testing for nncli.py module
@@ -44,30 +53,30 @@ Changed
4453
- Refactored code (addressing pylint findings)
4554
- Fixed bad exception handling in Python 3.4
4655

47-
v0.3.0 – 2018-09-07 [7]
56+
v0.3.0 – 2018-09-07 [8]
4857
-------------------
4958
Added
5059
- Documentation as PDF format
5160

5261
Changed
5362
- Numerous documentation corrections
5463

55-
v0.2.0 – 2018-09-03 [8]
64+
v0.2.0 – 2018-09-03 [9]
5665
-------------------
5766
Added
5867
- .travis.yml
5968
- Pytest, tox, et all added to support automated testing
6069
- Both tox and Travis testing back to Python 3.4
6170

62-
v0.1.2 – 2018-08-30 [9]
71+
v0.1.2 – 2018-08-30 [10]
6372
-------------------
6473
Added
6574
- Support for --version flag
6675

6776
Changed
6877
- requirements.txt replaced with Pipfile{,.lock}
6978

70-
v0.1.1 – 2018-08-07 [10]
79+
v0.1.1 – 2018-08-07 [11]
7180
-------------------
7281
Added
7382
- README content included in PyPI
@@ -82,11 +91,12 @@ v0.1.0 – 2018-07-31
8291

8392
[1] - https://keepachangelog.com/en/1.0.0/
8493
[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
94+
[3] - https://git.danielmoch.com/nncli/diff/?id=master&id2=v0.3.4
95+
[4] - https://git.danielmoch.com/nncli/diff/?id=v0.3.4&id2=v0.3.3
96+
[5] - https://git.danielmoch.com/nncli/diff/?id=v0.3.3&id2=v0.3.2
97+
[6] - https://git.danielmoch.com/nncli/diff/?id=v0.3.2&id2=v0.3.1
98+
[7] - https://git.danielmoch.com/nncli/diff/?id=v0.3.1&id2=v0.3.0
99+
[8] - https://git.danielmoch.com/nncli/diff/?id=v0.3.0&id2=v0.2.0
100+
[9] - https://git.danielmoch.com/nncli/diff/?id=v0.2.0&id2=v0.1.2
101+
[10] - https://git.danielmoch.com/nncli/diff/?id=v0.1.2&id2=v0.1.1
102+
[11] - 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.3'
4+
__version__ = '0.3.4'

0 commit comments

Comments
 (0)