Skip to content

Commit 1b1dea5

Browse files
committed
incr version & add changelog
1 parent b3b9438 commit 1b1dea5

File tree

2 files changed

+87
-1
lines changed

2 files changed

+87
-1
lines changed

CHANGELOG.md

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
# Change Log
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [0.4.0] - 2021-12-31
8+
### Added
9+
- Add admin export functionality
10+
- Site icon
11+
- Iconify interface
12+
13+
### Changed
14+
- Reduce size of docker image by using multi-stage build
15+
- Update pip packages
16+
- Target python 3.10
17+
- Use web_health_checker package for is-healthy route
18+
- Refactor code
19+
- Alter way app is run
20+
- Use theme-changer library for theme adjustment
21+
22+
### Fixed
23+
- Minor style improvements
24+
25+
## [0.3.1.1] - 2021-08-22
26+
### Changed
27+
- Increment pip version
28+
- Adjust README content
29+
30+
## [0.3.1] - 2021-05-20
31+
### Changed
32+
- Allow for minor pip version updates
33+
34+
### Fixed
35+
- Remove "saved" popup to just use the save button for status
36+
37+
## [0.3.0] - 2021-04-26
38+
### Added
39+
- Show whether note is unsaved (change to unsaved when user types, change to save when save is completed)
40+
- Sort row results
41+
- Notebook list page
42+
- Notes list page
43+
- Add more admin commands
44+
- Reset password
45+
- Delete user
46+
- View users
47+
- Export notebook (downloads as zip file)
48+
- Remove unneeded features
49+
- Add share-link copy button
50+
- Option to remove link-shares & user-shares
51+
52+
### Fixed
53+
- Correct unreadable link font colour in dark-mode
54+
55+
## [0.2.0] - 2021-04-15
56+
### Added
57+
- add dark & light theme
58+
- add admin stats & user password change
59+
- add account deletion
60+
- add username & password change functionality
61+
- support saving with link-share
62+
63+
## [0.1.1] - 2021-04-07
64+
### Fixed
65+
- Change PATCH to POST route
66+
67+
## [0.1.0] - 2021-04-05
68+
### Added
69+
- Remember me tick box on login
70+
- API routes (only available to logged in users)
71+
- use fetch for getting the notebook html
72+
- Create a get_token route
73+
- Show ws message for when edited from elsewhere
74+
- Fix the share-link edit route (mark updated functions needs changing)
75+
- Popup messages match Quart flashes
76+
- Auto delete flashes after a certain time
77+
- Share-link can trigger ws messages, but not receive them
78+
- Mobile view
79+
- Control panel on top of text area
80+
- Change websocket ws to wss if page is secure
81+
- Background saving & auto-save (no page reload needed)
82+
- Make flashed messages float at top of window
83+
- Make tool-bar float at top when it is out of view
84+
85+
### Fixed
86+
- Fix bug with saving in edit after already doing so

src/note_mark/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.3.1.1"
1+
__version__ = "0.4.0"

0 commit comments

Comments
 (0)