You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project consists of two crates which need to be published to crates.io in the correct order. Additonally, there's some steps one's likely to miss when releasing.
4
+
5
+
## Pre-Release-Checklist
6
+
7
+
-[ ]`influxdb/Cargo.toml` and `influxdb-derive/Cargo.toml`: Bumped `influxdb` and `influxdb-derive` versions to new version number?
8
+
-[ ]`influxdb/Cargo.toml`: Changed `influxdb` dependecy on `influxdb-derive` to new version number?
9
+
-[ ]`CHANGELOG.md`: Remove all entries from the unreleased section
10
+
-[ ]`CHANGELOG.md`: Add new Section for the new version number with subsections `Added`, `Changed` and `Fixed`.
11
+
-[ ]`CHANGELOG.md`: For each commit since the last release commit `Release vX.Y.Z`, added a changelog entry in the correct section linking to the author and PR in this format?
12
+
```
13
+
([@GithubUserName](https://github.com/GithubUserName) in [#PRNumber](https://github.com/Empty2k12/influxdb-rust/pull/PRNumber))
14
+
```
15
+
- [ ] `CHANGELOG.md`: At the bottom, changed the unreleased section link to `NEWVERSIONNUMBER...HEAD` and created a new link for the current release?
16
+
- [ ] `influxdb/lib.rs`: Changed the version number mentioned in the doc-comment to the new version number?
17
+
- [ ] `influxdb/lib.rs`: If the release contains any new features that should be mentioned in the Github Readme, are they listed in the doc-comment?
0 commit comments