Skip to content

Commit ba02d6d

Browse files
committed
Prepare the next release.
1 parent a6450c9 commit ba02d6d

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "changelogging"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
authors = ["nekitdev <[email protected]>"]
55
edition = "2021"
66
description = "Building changelogs from fragments."

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The binaries can be downloaded from [releases][Releases].
1919
### `pipx`
2020

2121
Note: because `changelogging` was originally written in python, releases on PyPI have
22-
different versions: for instance, the `0.6.0` release is on PyPI with version `2.6.0`,
22+
different versions: for instance, the `0.7.0` release is on PyPI with version `2.7.0`,
2323
meaning the major part of the version is always incremented twice to get the PyPI one.
2424

2525
Installing `changelogging` with `pipx` is quite simple:
@@ -75,7 +75,7 @@ Create `changelogging.toml` and add the *name*, *version* and *URL* of the proje
7575
```toml
7676
[context]
7777
name = "changelogging"
78-
version = "0.6.0"
78+
version = "0.7.0"
7979
url = "https://github.com/nekitdev/changelogging"
8080
```
8181

@@ -102,7 +102,7 @@ And finally, preview the changelog entry!
102102

103103
```console
104104
$ changelogging preview
105-
## 0.6.0 (YYYY-MM-DD)
105+
## 0.7.0 (YYYY-MM-DD)
106106

107107
### Security
108108

@@ -141,7 +141,7 @@ $ cat CHANGELOG.md
141141

142142
<!-- changelogging: start -->
143143

144-
## 0.6.0 (YYYY-MM-DD)
144+
## 0.7.0 (YYYY-MM-DD)
145145

146146
### Security
147147

changelogging.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[context]
22
name = "changelogging"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
url = "https://github.com/nekitdev/changelogging"
55

66
[formats]

examples/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!-- changelogging: start -->
44

5-
## [0.6.0](https://github.com/nekitdev/changelogging/tree/v0.6.0) (YYYY-MM-DD)
5+
## [0.7.0](https://github.com/nekitdev/changelogging/tree/v0.7.0) (YYYY-MM-DD)
66

77
### Features
88

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "changelogging"
3-
version = "2.6.0"
3+
version = "2.7.0"
44
description = "Building changelogs from fragments."
55
readme = "README.md"
66
requires-python = ">= 3.8"

src/context.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//! ```toml
1414
//! [context]
1515
//! name = "changelogging"
16-
//! version = "0.6.0"
16+
//! version = "0.7.0"
1717
//! url = "https://github.com/nekitdev/changelogging"
1818
//! ```
1919
//!

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
//!
109109
//! ```console
110110
//! $ changelogging preview
111-
//! ## [0.6.0](https://github.com/nekitdev/changelogging/tree/v0.6.0) (YYYY-MM-DD)
111+
//! ## [0.7.0](https://github.com/nekitdev/changelogging/tree/v0.7.0) (YYYY-MM-DD)
112112
//!
113113
//! ### Features
114114
//!

tests/changelogging.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[context]
22
name = "changelogging"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
url = "https://github.com/nekitdev/changelogging"
55

66
[formats]

0 commit comments

Comments
 (0)