... | ... |
@@ -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 |
... | ... |
@@ -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 |
... | ... |
@@ -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 |
... | ... |
@@ -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 |
|
... | ... |
@@ -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) |
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. |