diff --git a/CHANGELOG.md b/CHANGELOG.md index ab14602..5873013 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,63 @@ 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-alpha.4](https://github.com/curlz-rs/curlz/compare/v0.1.0-alpha.3...v0.1.0-alpha.4) - 2023-01-16 + +### Added +- *(http-language)* body variable substitution #21 (#24) +- *(ci)* migrate to `release-plz` +- *(http-language)* basics of the http language file format (#14) +- *(functions)* implement `jwt` template function (#8) +- *(essentials)* implement interactive prompt with a label (#3) +- *(funding)* add the github sponsoring button +- *(essentials)* `prompt_password()` special placeholder (#1) +- *(essentials)* completing example 1 in the readme +- *(essentials)* little refactoring +- *(essentials)* switch template language to minijinja +- *(essentials)* some more progress on basics +- *(doc)* update the readme on features +- *(essentials)* add first essential features +- *(command:bookmark-as)* introduce insta testing +- *(command:bookmark-as)* implement first `BookmarkAsCommand` +- *(ci)* first build pipeline +- remove dimensions from gif +- add demo.gif +- add first version of README.md +- add first version of Cargo.toml + +### Fixed +- *(#10)* RUSTSEC-2020-0071: avoid full time featured time dependency (#11) +- *(ci)* disable brew deployment for now +- *(doc)* fix badges and repo links + +### Other +- *(ci)* release-please use the patch version bump strategy +- *(ci)* release-please use the prerelease flag +- *(ci)* fix release-please token variable +- *(ci)* fix release-please add debug flag +- *(ci)* fix release-please token issue again +- *(ci)* fix release-please token issue +- *(ci)* add release-please workflow +- 0.1.0-alpha.3 +- add docs for placeholders at the beginning of urls (#9) +- fix readme formatting issue +- *(v0.1.0-alpha.2)* CHANGELOG + version bump + cargo update (#4) +- `v0.1.0-alpha.1` (#2) +- *(docs)* fix typos +- *(doc)* fix cargo doc lint +- *(fmt)* reformat +- *(deps)* cargo update some deps +- add todos for the next iteration +- Initial commit +- Initial commit +# 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] - 2022-01-01 [Unreleased]: https://github.com/curlz-rs/curlz/compare/v0.1.0-alpha.1...HEAD diff --git a/Cargo.lock b/Cargo.lock index c99d748..f52786a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -280,7 +280,7 @@ dependencies = [ [[package]] name = "curlz" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 40dc6a5..cdc79f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "curlz" authors = ["Sven Kanoldt "] description = "curl wrapper with placeholder, bookmark and environment powers just like postman" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" license = "GPL-3.0-only" include = ["src/**/*", "LICENSE", "*.md"] @@ -46,4 +46,4 @@ name = "curlz" [lib] name = "curlz" -path = "src/curlz/lib.rs" \ No newline at end of file +path = "src/curlz/lib.rs"