-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from ModelTC/docs
Update documents and CI
- Loading branch information
Showing
4 changed files
with
32 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Cargo Build & Test | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build_and_test: | ||
name: Rust project - latest | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
toolchain: | ||
- stable | ||
- beta | ||
- nightly | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} | ||
- run: cargo build --verbose | ||
- run: cargo test --verbose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,9 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.1.0](https://github.com/ModelTC/general-sam/releases/tag/v0.1.0) - 2023-10-13 | ||
|
||
### Fixed | ||
- fix interface | ||
- fix stub | ||
|
||
### Other | ||
- add release-plz.yml | ||
- add dependabot.yml | ||
- update readme | ||
- add licenses info in readme | ||
- add documentation url to Cargo.toml | ||
- update readme | ||
- update tests and readme usage | ||
- update cargo settings | ||
- add readme to pybind | ||
- add python tests | ||
- add order related interfaces | ||
- add state copy interface | ||
- rename interface | ||
- update readme | ||
- add readme, update examples | ||
- update tests and docstring | ||
- add get_trans for SAM, update python stub | ||
- add token healing | ||
- utf8 or unicode | ||
- update pyo3 | ||
- export other class in the extension | ||
- update __init__.py | ||
- add construct_trie_from_strings | ||
- update stub | ||
- add get_suffix_parent_id | ||
- add trie_utils | ||
- minor fix | ||
- update interfaces | ||
- cooler traveling | ||
- update interfaces | ||
- a little more idiomatic | ||
- add pybind | ||
- remove pyo3 | ||
- add interfaces | ||
- move out tests, add sort utils | ||
- add insert to trie | ||
- minor update for sam | ||
- better naming for IterAsChain | ||
- use Clone rather than Copy | ||
- heal my back | ||
- more type gymnastics, which breaks my back | ||
- type gymnastics | ||
- init | ||
- add licenses | ||
### Added | ||
- Initial repository. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters