Skip to content
This repository has been archived by the owner on Oct 15, 2022. It is now read-only.

Commit

Permalink
Merge pull request #451 from target/release-1.1.1
Browse files Browse the repository at this point in the history
release 1.1.1
  • Loading branch information
Profpatsch authored Jul 28, 2020
2 parents e87bb8b + 8ec61c3 commit 05ea211
Show file tree
Hide file tree
Showing 5 changed files with 85 additions and 75 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

140 changes: 70 additions & 70 deletions Cargo.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "lorri"
# lorri uses a MAJOR.MINOR versioning scheme, see MAINTAINERS.md for details.
# Cargo requires MAJOR.MINOR.PATCH. So we translate lorri's versioning scheme
# to MAJOR.MINOR.0, i.e. the PATCH part is always zero.
version = "1.1.0" # Format: MAJOR.MINOR.0
version = "1.1.1" # Format: MAJOR.MINOR.0
authors = [
"Graham Christensen <[email protected]>",
]
Expand Down
10 changes: 7 additions & 3 deletions MAINTAINERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

## Versioning scheme

The versioning scheme for lorri is `MAJOR.MINOR`, where `MAJOR` and `MINOR` are
non-negative integers without leading zeroes.
The versioning scheme for lorri is `MAJOR.MINOR.PATCH`, where `MAJOR`, `MINOR` and `PATCH`
are non-negative integers without leading zeroes.

### Terminology

Expand Down Expand Up @@ -35,7 +35,11 @@ For example: it's a major release if since the last released version,
now fails to build with lorri, unless the previous behaviour is considered a
bug.

In any other case, increment the `MINOR` version.
In any other case when a feature changes, increment the `MINOR` version.

If there is a bug fix or a security fix that does not change the interface,
increment the `PATCH` version. Also if there is a documentation improvement
that should get its own release.

(\*) The exception to this rule is `lorri direnv`: it is an external command
with machine-readable output whose output may change between minor releases,
Expand Down
6 changes: 6 additions & 0 deletions release.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
changelog = {
# Find the current version number with `git log --pretty=%h | wc -l`
entries = [
{
version = 626;
changes = ''
Added manpage for lorri(1).
'';
}
{
version = 581;
changes = ''
Expand Down

0 comments on commit 05ea211

Please sign in to comment.