Browse code

Update changelog

Joseph Weston authored on 13/04/2021 17:25:15
Showing 1 changed files
... ...
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5 5
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6 6
 
7 7
 ## [unreleased]
8
+### Added
9
+- Add a 'ver' command that prints the detected version
8 10
 
9 11
 ## [0.7.0] - 2020-08-15
10 12
 ### Added
Browse code

release v0.7.0

Joseph Weston authored on 16/08/2020 00:59:55
Showing 1 changed files
... ...
@@ -4,7 +4,9 @@ All notable changes to miniver will be documented in this file.
4 4
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5 5
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6 6
 
7
-## [Unreleased]
7
+## [unreleased]
8
+
9
+## [0.7.0] - 2020-08-15
8 10
 ### Added
9 11
 - Allow distributions that place packages in a "src" directory
10 12
 ### Changed
Browse code

add changelog entry for contributed change

Joseph Weston authored on 15/08/2020 23:39:41
Showing 1 changed files
... ...
@@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9 9
 - Allow distributions that place packages in a "src" directory
10 10
 ### Changed
11 11
 - Replace tool "install-miniver" with a tool "miniver" with a command "install"
12
+### Fixed
13
+- Use "build_py" from setuptools, rather than distutils, which prevents a warning
14
+  being displayed when using more recent setuptools versions
12 15
 
13 16
 ## [0.6.0] - 2019-02-17
14 17
 ### Fixed
Browse code

add CHANGELOG entry

Joseph Weston authored on 17/10/2019 22:19:32
Showing 1 changed files
... ...
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5 5
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6 6
 
7 7
 ## [Unreleased]
8
+### Added
9
+- Allow distributions that place packages in a "src" directory
8 10
 ### Changed
9 11
 - Replace tool "install-miniver" with a tool "miniver" with a command "install"
10 12
 
Browse code

replace 'install-miniver' script with 'miniver' with command 'install' (#19)

Joseph Weston authored on 17/10/2019 19:21:51 • GitHub committed on 17/10/2019 19:21:51
Showing 1 changed files
... ...
@@ -4,6 +4,10 @@ All notable changes to miniver will be documented in this file.
4 4
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5 5
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6 6
 
7
+## [Unreleased]
8
+### Changed
9
+- Replace tool "install-miniver" with a tool "miniver" with a command "install"
10
+
7 11
 ## [0.6.0] - 2019-02-17
8 12
 ### Fixed
9 13
 - Typos in generated files (comments only)
Browse code

add changelog

Joseph Weston authored on 17/02/2019 13:07:32
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,10 @@
1
+# Changelog
2
+All notable changes to miniver 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.6.0] - 2019-02-17
8
+### Fixed
9
+- Typos in generated files (comments only)
10
+- Dedented template code produced by 'install-miniver' to make it copy-pasteable.