Skip to content

Commit

Permalink
Prepare the next release.
Browse files Browse the repository at this point in the history
  • Loading branch information
nekitdev committed Aug 25, 2024
1 parent 371ab3d commit 797a9a6
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "changelogging"
version = "0.4.4"
version = "0.5.0"
authors = ["nekitdev <nekit@nekit.dev>"]
edition = "2021"
description = "Building changelogs from fragments."
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The binaries can be downloaded from [releases][Releases].
### `pipx`

Note: because `changelogging` was originally written in python, releases on PyPI have
different versions: for instance, the `0.4.4` release is on PyPI with version `2.4.4`,
different versions: for instance, the `0.5.0` release is on PyPI with version `2.5.0`,
meaning the major part of the version is always incremented twice to get the PyPI one.

Installing `changelogging` with `pipx` is quite simple:
Expand Down Expand Up @@ -75,7 +75,7 @@ Create `changelogging.toml` and add the *name*, *version* and *URL* of the proje
```toml
[context]
name = "changelogging"
version = "0.4.4"
version = "0.5.0"
url = "https://github.com/nekitdev/changelogging"
```

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

```console
$ changelogging preview
## 0.4.4 (YYYY-MM-DD)
## 0.5.0 (YYYY-MM-DD)

### Security

Expand Down Expand Up @@ -141,7 +141,7 @@ $ cat CHANGELOG.md

<!-- changelogging: start -->

## 0.4.4 (YYYY-MM-DD)
## 0.5.0 (YYYY-MM-DD)

### Security

Expand Down
2 changes: 1 addition & 1 deletion changelogging.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[context]
name = "changelogging"
version = "0.4.4"
version = "0.5.0"
url = "https://github.com/nekitdev/changelogging"

[formats]
Expand Down
2 changes: 1 addition & 1 deletion examples/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!-- changelogging: start -->

## [0.4.4](https://github.com/nekitdev/changelogging/tree/v0.4.4) (YYYY-MM-DD)
## [0.5.0](https://github.com/nekitdev/changelogging/tree/v0.5.0) (YYYY-MM-DD)

### Features

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "changelogging"
version = "2.4.4"
version = "2.5.0"
description = "Building changelogs from fragments."
readme = "README.md"
requires-python = ">= 3.8"
Expand Down
2 changes: 1 addition & 1 deletion src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//! ```toml
//! [context]
//! name = "changelogging"
//! version = "0.4.4"
//! version = "0.5.0"
//! url = "https://github.com/nekitdev/changelogging"
//! ```
//!
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
//!
//! ```console
//! $ changelogging preview
//! ## [0.4.4](https://github.com/nekitdev/changelogging/tree/v0.4.4) (YYYY-MM-DD)
//! ## [0.5.0](https://github.com/nekitdev/changelogging/tree/v0.5.0) (YYYY-MM-DD)
//!
//! ### Features
//!
Expand Down
2 changes: 1 addition & 1 deletion tests/changelogging.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[context]
name = "changelogging"
version = "0.4.4"
version = "0.5.0"
url = "https://github.com/nekitdev/changelogging"

[formats]
Expand Down

0 comments on commit 797a9a6

Please sign in to comment.