chore(version): bump to v0.2.0
** [0.2.0] - 2023-07-07 *** Bug Fixes - Made categories with only links possible *** Features - [**breaking**] Put links in categories *** Miscellaneous Tasks - Filled out Cargo.toml - Added test.yaml to gitignore - Fixed up code, roadmap for bump *** Refactor - Simple code quality changes *** Testing - Refactored testing, added tests dir ** [0.1.2] - 2023-07-03 *** Features - Implemented quiet flag *** Miscellaneous Tasks - Bump to v0.1.2 Signed-off-by: Christina Sørensen <christina@cafkafk.com>
This commit is contained in:
parent
c36000e7a0
commit
c9b00adb57
3 changed files with 33 additions and 2 deletions
31
CHANGELOG.md
31
CHANGELOG.md
|
@ -2,12 +2,40 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [0.2.0] - 2023-07-07
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- Made categories with only links possible
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- [**breaking**] Put links in categories
|
||||||
|
|
||||||
|
### Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Filled out Cargo.toml
|
||||||
|
- Added test.yaml to gitignore
|
||||||
|
- Fixed up code, roadmap for bump
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- Simple code quality changes
|
||||||
|
|
||||||
|
### Testing
|
||||||
|
|
||||||
|
- Refactored testing, added tests dir
|
||||||
|
|
||||||
## [0.1.2] - 2023-07-03
|
## [0.1.2] - 2023-07-03
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|
||||||
- Implemented quiet flag
|
- Implemented quiet flag
|
||||||
|
|
||||||
|
### Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Bump to v0.1.2
|
||||||
|
|
||||||
## [0.1.1] - 2023-07-03
|
## [0.1.1] - 2023-07-03
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
@ -24,6 +52,7 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
### Miscellaneous Tasks
|
### Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Bump v0.1.0, housekeeping, #8 from cafkafk/dev
|
||||||
- Bump to v0.1.1
|
- Bump to v0.1.1
|
||||||
|
|
||||||
## [0.1.0] - 2023-07-03
|
## [0.1.0] - 2023-07-03
|
||||||
|
@ -42,6 +71,7 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
### Miscellaneous Tasks
|
### Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Bump to 0.0.7 #7 from cafkafk/dev
|
||||||
- Bump v0.1.0, housekeeping
|
- Bump v0.1.0, housekeeping
|
||||||
|
|
||||||
### Refactor
|
### Refactor
|
||||||
|
@ -95,6 +125,7 @@ All notable changes to this project will be documented in this file.
|
||||||
- Version bump to v0.0.3
|
- Version bump to v0.0.3
|
||||||
- Moved install scripts to ./bin
|
- Moved install scripts to ./bin
|
||||||
- Merge 0.0.6
|
- Merge 0.0.6
|
||||||
|
- Merge 0.0.6 #6 from cafkafk/dev
|
||||||
- Bump to 0.0.7
|
- Bump to 0.0.7
|
||||||
|
|
||||||
### Refactor
|
### Refactor
|
||||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -179,7 +179,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "gg"
|
name = "gg"
|
||||||
version = "0.1.2"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
"clap_mangen",
|
"clap_mangen",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gg"
|
name = "gg"
|
||||||
version = "0.1.2"
|
version = "0.2.0"
|
||||||
authors = ["Christina Sørensen"]
|
authors = ["Christina Sørensen"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.72.0"
|
rust-version = "1.72.0"
|
||||||
|
|
Loading…
Reference in a new issue