Skip to content

Commit

Permalink
Release v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumDancer committed Nov 24, 2023
1 parent 911dcca commit 28a4e3f
Show file tree
Hide file tree
Showing 13 changed files with 60 additions and 39 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Security

### Added

### Changed

### Removed

## [0.3.1] - 2023-11-24

### Breaking changes

### Security

### Added
- Docs: Add steps for creating a new release ([@QuantumDancer](https://github.com/QuantumDancer))
- CI: Add Python 3.12 to workflows ([@dirksammel](https://github.com/dirksammel))
Expand Down Expand Up @@ -337,7 +349,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0



[Unreleased]: https://github.com/alu-schumacher/AUDITOR/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/alu-schumacher/AUDITOR/compare/v0.3.1...HEAD
[0.0.1]: https://github.com/alu-schumacher/AUDITOR/releases/tag/v0.0.1
[0.0.2]: https://github.com/alu-schumacher/AUDITOR/releases/tag/v0.0.2
[0.0.3]: https://github.com/alu-schumacher/AUDITOR/releases/tag/v0.0.3
Expand All @@ -348,3 +360,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[0.1.0]: https://github.com/alu-schumacher/AUDITOR/releases/tag/v0.1.0
[0.2.0]: https://github.com/alu-schumacher/AUDITOR/releases/tag/v0.2.0
[0.3.0]: https://github.com/alu-schumacher/AUDITOR/releases/tag/v0.3.0
[0.3.1]: https://github.com/alu-schumacher/AUDITOR/releases/tag/v0.3.1
54 changes: 27 additions & 27 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion auditor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "auditor"
version = "0.3.0"
version = "0.3.1"
authors = ["Stefan Kroboth <stefan.kroboth@gmail.com>"]
edition = "2021"
default-run = "auditor"
Expand Down
2 changes: 1 addition & 1 deletion collectors/htcondor/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version = "0.3.0"
requires-python = ">=3.8"
dependencies = [
"pyyaml==6.0.1",
"python-auditor==0.3.0"
"python-auditor==0.3.1"
]
readme = "README.md"

Expand Down
4 changes: 2 additions & 2 deletions collectors/slurm-epilog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "auditor-slurm-epilog-collector"
version = "0.3.0"
version = "0.3.1"
authors = ["Stefan Kroboth <stefan.kroboth@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -30,7 +30,7 @@ path = "src/main.rs"
strip = true

[dependencies]
auditor = { path = "../../auditor", version = "0.3.0" }
auditor = { path = "../../auditor", version = "0.3.1" }
chrono = { version = "0.4.31", default-features = false, features = ["serde"] }
anyhow = "1"
regex = "1"
Expand Down
4 changes: 2 additions & 2 deletions collectors/slurm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "auditor-slurm-collector"
version = "0.3.0"
version = "0.3.1"
authors = ["Stefan Kroboth <stefan.kroboth@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -31,7 +31,7 @@ strip = true

[dependencies]
anyhow = "1"
auditor = { path = "../../auditor", version = "0.3.0", default-features = false, features = ["client"] }
auditor = { path = "../../auditor", version = "0.3.1", default-features = false, features = ["client"] }
bincode = "1.3.3"
color-eyre = "0.6.2"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time", "process"] }
Expand Down
2 changes: 1 addition & 1 deletion plugins/apel/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "auditor_apel_plugin"
version = "0.3.0"
requires-python = ">=3.8"
dependencies = [
"python-auditor==0.3.0",
"python-auditor==0.3.1",
"requests==2.31.0",
"cryptography==41.0.5",
]
Expand Down
4 changes: 2 additions & 2 deletions plugins/priority/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "auditor-priority-plugin"
version = "0.3.0"
version = "0.3.1"
authors = ["Stefan Kroboth <stefan.kroboth@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -30,7 +30,7 @@ path = "src/main.rs"
strip = true

[dependencies]
auditor = { path = "../../auditor", version = "0.3.0" }
auditor = { path = "../../auditor", version = "0.3.1" }
actix-web = "4.4.0"
config = "0.13"
tracing = { version = "0.1", features = ["log"] }
Expand Down
4 changes: 2 additions & 2 deletions pyauditor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "python-auditor"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
authors = ["Stefan Kroboth <stefan.kroboth@gmail.com>"]
license = "MIT OR Apache-2.0"
Expand All @@ -25,7 +25,7 @@ name = "pyauditor"
crate-type = ["cdylib"]

[dependencies]
auditor = { path = "../auditor", version = "0.3.0", default-features = false, features = ["client"] }
auditor = { path = "../auditor", version = "0.3.1", default-features = false, features = ["client"] }
anyhow = "1"
pyo3 = { version = "0.19", features = ["chrono", "extension-module", "anyhow"] }
pyo3-asyncio = { version = "0.19", features = ["attributes", "tokio-runtime"] }
Expand Down
2 changes: 2 additions & 0 deletions rpm/auditor-priority-plugin.spec
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ rm -rf $RPM_BUILD_ROOT
%{_bindir}/%{name}

%changelog
* Fri Nov 24 2023 Benjamin Rottler <benjamin.rottler@physik.uni-freiburg.de> - 0.3.1
- Release v0.3.1 - see https://github.com/ALU-Schumacher/AUDITOR/blob/main/CHANGELOG.md for changes
* Fri Nov 17 2023 Benjamin Rottler <benjamin.rottler@physik.uni-freiburg.de> - 0.3.0
- Release v0.3.0 - see https://github.com/ALU-Schumacher/AUDITOR/blob/main/CHANGELOG.md for changes
* Thu Sep 21 2023 Benjamin Rottler <benjamin.rottler@physik.uni-freiburg.de> - 0.2.0
Expand Down
2 changes: 2 additions & 0 deletions rpm/auditor-slurm-collector.spec
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ rm -rf $RPM_BUILD_ROOT
%{_bindir}/%{name}

%changelog
* Fri Nov 24 2023 Benjamin Rottler <benjamin.rottler@physik.uni-freiburg.de> - 0.3.1
- Release v0.3.1 - see https://github.com/ALU-Schumacher/AUDITOR/blob/main/CHANGELOG.md for changes
* Fri Nov 17 2023 Benjamin Rottler <benjamin.rottler@physik.uni-freiburg.de> - 0.3.0
- Release v0.3.0 - see https://github.com/ALU-Schumacher/AUDITOR/blob/main/CHANGELOG.md for changes
* Thu Sep 21 2023 Benjamin Rottler <benjamin.rottler@physik.uni-freiburg.de> - 0.2.0
Expand Down
2 changes: 2 additions & 0 deletions rpm/auditor-slurm-epilog-collector.spec
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ rm -rf $RPM_BUILD_ROOT
%{_bindir}/%{name}

%changelog
* Fri Nov 24 2023 Benjamin Rottler <benjamin.rottler@physik.uni-freiburg.de> - 0.3.1
- Release v0.3.1 - see https://github.com/ALU-Schumacher/AUDITOR/blob/main/CHANGELOG.md for changes
* Fri Nov 17 2023 Benjamin Rottler <benjamin.rottler@physik.uni-freiburg.de> - 0.3.0
- Release v0.3.0 - see https://github.com/ALU-Schumacher/AUDITOR/blob/main/CHANGELOG.md for changes
* Thu Sep 21 2023 Benjamin Rottler <benjamin.rottler@physik.uni-freiburg.de> - 0.2.0
Expand Down
2 changes: 2 additions & 0 deletions rpm/auditor.spec
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ rm -rf $RPM_BUILD_ROOT
%{_bindir}/%{name}

%changelog
* Fri Nov 24 2023 Benjamin Rottler <benjamin.rottler@physik.uni-freiburg.de> - 0.3.1
- Release v0.3.1 - see https://github.com/ALU-Schumacher/AUDITOR/blob/main/CHANGELOG.md for changes
* Fri Nov 17 2023 Benjamin Rottler <benjamin.rottler@physik.uni-freiburg.de> - 0.3.0
- Release v0.3.0 - see https://github.com/ALU-Schumacher/AUDITOR/blob/main/CHANGELOG.md for changes
* Thu Sep 21 2023 Benjamin Rottler <benjamin.rottler@physik.uni-freiburg.de> - 0.2.0
Expand Down

0 comments on commit 28a4e3f

Please sign in to comment.