Skip to content

Commit

Permalink
released version v1.0.0 as stable
Browse files Browse the repository at this point in the history
  • Loading branch information
selimserbes committed Aug 28, 2024
1 parent 02a8e5f commit 979c7b8
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 3 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
@@ -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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "controlled_astar"
version = "0.1.4"
version = "1.0.0"
edition = "2021"

[[example]]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 979c7b8

Please sign in to comment.