From 979c7b8579c94e47e291000de970e7d4cd7ff61f Mon Sep 17 00:00:00 2001 From: selimserbes Date: Wed, 28 Aug 2024 20:52:10 +0300 Subject: [PATCH] released version v1.0.0 as stable --- .github/workflows/ci_tests.yml | 23 +++++++++++++++++++++++ CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- 5 files changed, 36 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/ci_tests.yml diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml new file mode 100644 index 0000000..bc079d8 --- /dev/null +++ b/.github/workflows/ci_tests.yml @@ -0,0 +1,23 @@ +name: Tests for controlled_astar + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Set up Rust + uses: raftario/setup-rust-action@v1 + with: + rust-channel: stable + + - name: Run tests + run: cargo test --tests diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e131fa..e4c70be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,3 +43,13 @@ ### Notes - This release includes updates to the documentation and enhancements to the testing framework. + +## [1.0.0] - 2024-08-28 + +### User Documentation and Guide + +- A comprehensive user documentation and guide has been prepared. This resource provides detailed information on how to use the library and its key features. + +### CI/CD Integration + +- Continuous integration and continuous delivery (CI/CD) processes have been added. Code changes are now automatically tested, and code quality is continuously monitored. diff --git a/Cargo.lock b/Cargo.lock index c1c9c7f..3d49b3e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,4 +4,4 @@ version = 3 [[package]] name = "controlled_astar" -version = "0.1.4" +version = "1.0.0" diff --git a/Cargo.toml b/Cargo.toml index 222adc9..21c56d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "controlled_astar" -version = "0.1.4" +version = "1.0.0" edition = "2021" [[example]] diff --git a/README.md b/README.md index 886399c..b5f6382 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Add `controlled_astar` as a dependency in your `Cargo.toml`: ```toml [dependencies] -controlled_astar = "0.1.4" +controlled_astar = "1.0.0" ``` ## Usage