Skip to content

Commit 296488d

Browse files
authored
Release preparation for cedar-local-agent version 1.0.0 (#54)
* Release preparation for cedar-local-agent version 1.0.0
1 parent fd8b5a5 commit 296488d

File tree

8 files changed

+13
-12
lines changed

8 files changed

+13
-12
lines changed

.github/workflows/semantic_version_check.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
ref: ${{ github.base_ref }}
2828
path: base
2929

30-
# TODO: Need to add another step for release PR.
3130
# For the release PR, it will need to compare with the latest version published in the crate.io.
3231

3332
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Fixed
1515

16-
## 1.0.0 - 2023-11-15
16+
## 1.0.0 - 2023-12-14
1717
Cedar Local Agent Version: 1.0.0
1818
- Initial release of `cedar-local-agent`.

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
[lib]
2-
bench = false
3-
41
[package]
52
name = "cedar-local-agent"
63
edition = "2021"
7-
version = "0.1.0"
4+
version = "1.0.0"
5+
license = "Apache-2.0"
6+
description = "Foundational library for creating Cedar-based asynchronous authorizers."
7+
keywords = ["cedar", "agent", "authorization", "policy", "security"]
8+
repository = "https://github.com/cedar-policy/cedar-local-agent"
89

9-
publish = false
10+
[lib]
11+
bench = false
1012

1113
[dependencies]
1214
# Utilities

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Add `cedar-local-agent` as a dependency in your `Cargo.toml` file. For example:
2727

2828
```toml
2929
[dependencies]
30-
cedar-local-agent = "0.1"
30+
cedar-local-agent = "1.0"
3131
```
3232

3333
## Quick Start

examples/server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version = "0.1.0"
66
publish = false
77

88
[dependencies]
9-
cedar-local-agent = { version = "0.1.0", path = "../../../cedar-local-agent" }
9+
cedar-local-agent = { version = "1.0", path = "../../../cedar-local-agent" }
1010

1111
# Utilities
1212
async-trait = "0.1.71"

examples/tracing/application_log/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version = "0.1.0"
66
publish = false
77

88
[dependencies]
9-
cedar-local-agent = { version = "0.1.0", path = "../../../cedar-local-agent" }
9+
cedar-local-agent = { version = "1.0", path = "../../../cedar-local-agent" }
1010

1111
# Tracing
1212
tracing = "0.1.37"

examples/tracing/authorization_log/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version = "0.1.0"
66
publish = false
77

88
[dependencies]
9-
cedar-local-agent = { version = "0.1.0", path = "../../../cedar-local-agent" }
9+
cedar-local-agent = { version = "1.0", path = "../../../cedar-local-agent" }
1010

1111
# Tracing
1212
tracing = "0.1.37"

0 commit comments

Comments
 (0)