diff --git a/crates/crontab_parser/CHANGELOG.md b/crates/crontab_parser/CHANGELOG.md new file mode 100644 index 0000000..f0ddbcb --- /dev/null +++ b/crates/crontab_parser/CHANGELOG.md @@ -0,0 +1,48 @@ +## 0.1.0 + + +### ✨Features + +* feat: Add release xtask (#32) ([f7fee4d](https://github.com/leo91000/archimedes/commit/f7fee4d)) +* feat: Done with parsing crontab ([39fba1a](https://github.com/leo91000/archimedes/commit/39fba1a)) +* feat: All parsing done ([75c5429](https://github.com/leo91000/archimedes/commit/75c5429)) +* feat: Add query parser ([579e34d](https://github.com/leo91000/archimedes/commit/579e34d)) + +### 🐛 Fixes + +* fix: Fix typo in Cargo package keywords ([012d4ee](https://github.com/leo91000/archimedes/commit/012d4ee)) + +### 🧹 chores + +* chore(deps): update rust crate serde to 1.0.158 ([4643dcb](https://github.com/leo91000/archimedes/commit/4643dcb)) +* chore(deps): update all non-major dependencies ([629a3dd](https://github.com/leo91000/archimedes/commit/629a3dd)) +* chore(deps): update rust crate serde to 1.0.156 ([86685ec](https://github.com/leo91000/archimedes/commit/86685ec)) +* chore(deps): update rust crate serde to 1.0.155 ([f98fde2](https://github.com/leo91000/archimedes/commit/f98fde2)) +* chore(deps): update rust crate serde to 1.0.154 ([abddcf5](https://github.com/leo91000/archimedes/commit/abddcf5)) +* chore(deps): update rust crate serde to 1.0.153 ([374f207](https://github.com/leo91000/archimedes/commit/374f207)) +* chore(deps): update rust crate thiserror to 1.0.39 ([0790a3f](https://github.com/leo91000/archimedes/commit/0790a3f)) +* chore(deps): update rust crate serde_json to 1.0.94 ([a969360](https://github.com/leo91000/archimedes/commit/a969360)) +* chore(deps): update rust crate serde_qs to 0.12.0 ([94df8c9](https://github.com/leo91000/archimedes/commit/94df8c9)) +* chore(deps): update rust crate serde_json to 1.0.93 ([7eb2054](https://github.com/leo91000/archimedes/commit/7eb2054)) +* chore(deps): update all non-major dependencies ([3ecb31d](https://github.com/leo91000/archimedes/commit/3ecb31d)) +* chore(deps): update rust crate nom to 7.1.3 ([5833efd](https://github.com/leo91000/archimedes/commit/5833efd)) +* chore(deps): update rust crate serde_qs to 0.11.0 ([e6700bc](https://github.com/leo91000/archimedes/commit/e6700bc)) +* chore(deps): update rust crate nom to 7.1.2 ([038f4d2](https://github.com/leo91000/archimedes/commit/038f4d2)) +* chore(deps): update rust crate serde to 1.0.152 ([a6115cb](https://github.com/leo91000/archimedes/commit/a6115cb)) +* chore: Add crontab runner to the worker main run function ([340445a](https://github.com/leo91000/archimedes/commit/340445a)) +* chore: Specify version for workspace packages ([8e03f22](https://github.com/leo91000/archimedes/commit/8e03f22)) +* chore: Remove keywords and categories from packages metadata ([798bded](https://github.com/leo91000/archimedes/commit/798bded)) +* chore: Include https:// in package metadata documentation and homepage ([ebffd12](https://github.com/leo91000/archimedes/commit/ebffd12)) +* chore: Prepare packages for publishing ([5d99f5c](https://github.com/leo91000/archimedes/commit/5d99f5c)) +* chore(deps): update all non-major dependencies ([bdb33af](https://github.com/leo91000/archimedes/commit/bdb33af)) +* chore: Remove unused deps ([bb09685](https://github.com/leo91000/archimedes/commit/bb09685)) +* chore: Use u32 for crontab value ([956937e](https://github.com/leo91000/archimedes/commit/956937e)) +* chore: Refactor folder structure ([df41490](https://github.com/leo91000/archimedes/commit/df41490)) +* chore: reexport error kind ([f6921a8](https://github.com/leo91000/archimedes/commit/f6921a8)) +* chore: Remove unused regexes module ([c9cdf04](https://github.com/leo91000/archimedes/commit/c9cdf04)) +* chore: Replace manual digit parsing with character::complete::u8 ([f5d680d](https://github.com/leo91000/archimedes/commit/f5d680d)) + +### 🚧 WIP + +* wip: attempt at nom parsing crontab ([c48e972](https://github.com/leo91000/archimedes/commit/c48e972)) + diff --git a/crates/crontab_parser/Cargo.toml b/crates/crontab_parser/Cargo.toml index 800440a..e929986 100644 --- a/crates/crontab_parser/Cargo.toml +++ b/crates/crontab_parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "archimedes_crontab_parser" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "MIT" description = "Crontab parsing package for archimedes, a high performance Rust/PostgreSQL job queue"