Skip to content

Commit 6ded43a

Browse files
committed
feat: version 0.1.0
1 parent 1a0d958 commit 6ded43a

File tree

9 files changed

+55
-36
lines changed

9 files changed

+55
-36
lines changed

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.1.0] - 2022-02-14
11+
12+
### Added
13+
14+
- Initial version
15+
- A Changelog
16+
17+
## [0.0.0] - 2022-01-09
18+
19+
### Added
20+
21+
- The project :)
22+
23+
---
24+
25+
[unreleased]: https://github.com/kamadorueda/alejandra/compare/0.1.0...HEAD
26+
[0.1.0]: https://github.com/kamadorueda/alejandra/compare/0.0.0...0.1.0
27+
[0.0.0]: https://github.com/kamadorueda/alejandra/compare/6adfbe8516bf6d9e896534e01118e1bc41f65425...0.0.0

Cargo.lock

+3-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ description = "The Uncompromising Nix Code Formatter"
1313
edition = "2021"
1414
name = "alejandra"
1515
repository = "https://github.com/kamadorueda/alejandra"
16-
version = "0.0.0"
16+
version = "0.1.0"

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,18 @@ See why Alejandra was created
140140
and a comparison between alternatives
141141
[here](https://discourse.nixos.org/t/the-uncompromising-nix-code-formatter/17385/3?u=kamadorueda).
142142

143+
## Versioning
144+
145+
We use [semver](https://semver.org/) to version Alejandra.
146+
147+
Our public API consists of:
148+
149+
- The formatting rules (a.k.a. the style).
150+
- The CLI tool (`$ alejandra`),
151+
command line flags,
152+
positional arguments,
153+
and stdout.
154+
143155
## Footnotes
144156

145157
[^benchmark-specs]:

flake.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
commit = inputs.self.shortRev or "dirty";
4242
date = inputs.self.lastModifiedDate or inputs.self.lastModified or "19700101";
4343
in
44-
"${builtins.substring 0 8 date}_${commit}";
44+
"0.1.0+${builtins.substring 0 8 date}.${commit}";
4545
src = ./.;
4646
inherit target;
4747
cargoLock.lockFile = ./Cargo.lock;

front/Cargo.lock

+4-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ description = "The Uncompromising Nix Code Formatter"
1414
edition = "2021"
1515
name = "alejandra-front"
1616
repository = "https://github.com/kamadorueda/alejandra"
17-
version = "0.0.0"
17+
version = "0.1.0"

front/flake.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)