Skip to content

Commit

Permalink
build(version): update
Browse files Browse the repository at this point in the history
  • Loading branch information
Ninjani committed Jan 17, 2023
1 parent 0fdc24b commit 3609244
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 75 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ 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).

## [0.19.0] - 2023-01-17

- Fix gist syncing bug (Issue #[143](https://github.com/out-of-cheese-error/the-way/issues/143))
- Upgrade dependencies

## [0.18.0] - 2022-08-24

- Add `-p`/`--plain` flag to remove ANSI color codes from output. (Issue
Expand Down Expand Up @@ -439,6 +444,8 @@ This uses the correct release directory now based on the TARGET environment vari
- A first working version of the-way
- cargo install option

[0.19.0]: https://github.com/out-of-cheese-error/the-way/compare/v0.18.0...v0.19.0

[0.18.0]: https://github.com/out-of-cheese-error/the-way/compare/v0.17.1...v0.18.0

[0.17.1]: https://github.com/out-of-cheese-error/the-way/compare/v0.17.0...v0.17.1
Expand Down
107 changes: 48 additions & 59 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 16 additions & 16 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "the-way"
version = "0.18.0"
version = "0.19.0"
edition = "2021"
authors = ["Ninjani"]
description = "A code snippets manager for your terminal"
Expand All @@ -17,8 +17,8 @@ exclude = [

[dependencies]
# Argument parsing
clap = { version = "4.0.29", features = ["derive"] }
clap_complete = "4.0.6"
clap = { version = "4.1.1", features = ["derive"] }
clap_complete = "4.1.0"

# Configuration management
confy = "0.5.1"
Expand All @@ -27,46 +27,46 @@ directories-next = "1.0.2"
# Error management
eyre = "0.6.8"
color-eyre = { version = "0.6.2", default-features = false }
thiserror = "1.0.37"
thiserror = "1.0.38"

# Database related
sled = "0.34.7"
bincode = "1.3.3"

# Serializing
serde = "1.0.150"
serde_json = "1.0.89"
serde_derive = "1.0.150"
serde_yaml = "0.9.14"
serde = "1.0.152"
serde_json = "1.0.91"
serde_derive = "1.0.152"
serde_yaml = "0.9.16"

# Parsing and manipulating dates
chrono = { version = "0.4.23", features = ["serde"] }
chrono-english = "0.1.7"

# Taking user input and showing progress
dialoguer = "0.10.2"
indicatif = "0.17.2"
dialoguer = "0.10.3"
indicatif = "0.17.3"

# Fuzzy search
skim = "0.10.2"

# Terminal syntax highlighting
syntect = { version = "5.0.0", default-features = false, features = ["default-fancy"] }
hex = "0.4.3"
grep-cli = "0.1.6"
termcolor = "1.1.3"
grep-cli = "0.1.7"
termcolor = "1.2.0"

# Sync to Gist/GitLab
ureq = { version = "2.5.0", features = ["json"] }
ureq = { version = "2.6.2", features = ["json"] }
strum = "0.24.1"
strum_macros = "0.24.3"

# pattern filter and filling shell script variables
regex = "1.7.0"
regex = "1.7.1"

[dev-dependencies]
assert_cmd = "2.0.7"
predicates = "2.1.4"
assert_cmd = "2.0.8"
predicates = "2.1.5"
tempfile = "3.3.0"
expectrl = "0.6.0"

Expand Down

0 comments on commit 3609244

Please sign in to comment.