Skip to content

Commit ddd18b2

Browse files
committed
Add changelog for 2.0.0
1 parent d306518 commit ddd18b2

File tree

2 files changed

+61
-1
lines changed

2 files changed

+61
-1
lines changed

CHANGELOG.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,66 @@
22

33
## Unreleased
44

5+
## 2.0
6+
7+
### 2.0.0 - 2022-08-30
8+
9+
Make sure to read about the breaking changes and the release highlights below!
10+
11+
#### Breaking changes
12+
13+
If you are using chartpress to publish development releases should be aware that
14+
the suffix appended to chart versions and image tags is changed to look like
15+
`1.2.3-0.dev.git.n.hash`, where the following things has changed:
16+
17+
- `-0.dev` is appended by default for non pre-release versions.
18+
- `n` is the number of commits on the branch, where it previously was the number
19+
of commits since the last tag on the branch.
20+
21+
#### Release highlights
22+
23+
- The option `baseVersion` is added to chart configuration in chartpress.yaml,
24+
for more details see the [README.md section on controlling development
25+
versions](https://github.com/jupyterhub/chartpress#controlling-development-versions).
26+
27+
#### New features added
28+
29+
- use baseVersion config to set the base version for development releases (supersedes useChartVersion config) [#179](https://github.com/jupyterhub/chartpress/pull/179) ([@minrk](https://github.com/minrk))
30+
- (reverted) Add `useChartVersion` and change appended version suffix (now like `1.2.3-0.dev.git.3.h123`) [#150](https://github.com/jupyterhub/chartpress/pull/150) ([@minrk](https://github.com/minrk))
31+
32+
#### Enhancements made
33+
34+
- (reverted) accept --tag arg in --reset [#152](https://github.com/jupyterhub/chartpress/pull/152) ([@minrk](https://github.com/minrk))
35+
- Allow extra options to be passed to docker build [#142](https://github.com/jupyterhub/chartpress/pull/142) ([@adamblake](https://github.com/adamblake))
36+
37+
#### Bugs fixed
38+
39+
- fix check for first-time publishing chart [#161](https://github.com/jupyterhub/chartpress/pull/161) ([@minrk](https://github.com/minrk))
40+
41+
#### Maintenance and upkeep improvements
42+
43+
- upload test coverage to codecov [#181](https://github.com/jupyterhub/chartpress/pull/181) ([@minrk](https://github.com/minrk))
44+
- Enforce that `--reset` is an exclusive argument [#180](https://github.com/jupyterhub/chartpress/pull/180) ([@minrk](https://github.com/minrk))
45+
- count commits on branch instead of commits since last tag on branch [#178](https://github.com/jupyterhub/chartpress/pull/178) ([@minrk](https://github.com/minrk))
46+
- pre-commit: add pyupgrade and isort (replaces reorder-python-imports) [#173](https://github.com/jupyterhub/chartpress/pull/173) ([@consideRatio](https://github.com/consideRatio))
47+
- Add tests with dev tags and backport branches [#145](https://github.com/jupyterhub/chartpress/pull/145) ([@minrk](https://github.com/minrk))
48+
- Drop support for py36 and misc ci maintenance [#144](https://github.com/jupyterhub/chartpress/pull/144) ([@consideRatio](https://github.com/consideRatio))
49+
- Remove six (no longer needed by docker) [#140](https://github.com/jupyterhub/chartpress/pull/140) ([@manics](https://github.com/manics))
50+
51+
#### Documentation improvements
52+
53+
- docs: update README about use with GitHub actions [#139](https://github.com/jupyterhub/chartpress/pull/139) ([@consideRatio](https://github.com/consideRatio))
54+
55+
#### Continuous integration improvements
56+
57+
- upload test coverage to codecov [#181](https://github.com/jupyterhub/chartpress/pull/181) ([@minrk](https://github.com/minrk))
58+
59+
#### Contributors to this release
60+
61+
([GitHub contributors page for this release](https://github.com/jupyterhub/chartpress/graphs/contributors?from=2021-07-26&to=2022-08-30&type=c))
62+
63+
[@adamblake](https://github.com/search?q=repo%3Ajupyterhub%2Fchartpress+involves%3Aadamblake+updated%3A2021-07-26..2022-08-30&type=Issues) | [@consideRatio](https://github.com/search?q=repo%3Ajupyterhub%2Fchartpress+involves%3AconsideRatio+updated%3A2021-07-26..2022-08-30&type=Issues) | [@manics](https://github.com/search?q=repo%3Ajupyterhub%2Fchartpress+involves%3Amanics+updated%3A2021-07-26..2022-08-30&type=Issues) | [@minrk](https://github.com/search?q=repo%3Ajupyterhub%2Fchartpress+involves%3Aminrk+updated%3A2021-07-26..2022-08-30&type=Issues)
64+
565
## 1.3
666

767
### 1.3.0 - 2021-07-26

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ optional arguments:
150150
loaded into the local docker engine.
151151
--list-images print list of images to stdout. Images will not be
152152
built.
153-
--version Print current chartpress version and exit.
153+
--version show program's version number and exit
154154
```
155155

156156
## Configuration

0 commit comments

Comments
 (0)