Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
fabienbellanger committed Jan 29, 2024
1 parent 45a1a38 commit a06d451
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## `0.6.1` (2023-12-30) [CURRENT]
## `0.6.2` (2024-01-29) [CURRENT]

### Changed

- Add Copy and Clone traits to JustifyMode and CashDrawer enums [#4](https://github.com/fabienbellanger/escpos-rs/pull/4)
- Bump `env_logger` to `0.11.1`
- Bump `image` to `0.24.8`

## `0.6.1` (2023-12-30)

### Fixed

Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT"
name = "escpos"
readme = "README.md"
repository = "https://github.com/fabienbellanger/escpos-rs"
version = "0.6.1"
version = "0.6.2"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -22,11 +22,11 @@ graphics = ["dep:image"]

[dependencies]
encoding_rs = "0.8.33"
image = { version = "0.24.7", optional = true }
image = { version = "0.24.8", optional = true }
log = "0.4.20"

[dev-dependencies]
env_logger = "0.10.1"
env_logger = "0.11.1"

[package.metadata.docs.rs]
all-features = true
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ For standard functionalities (e.g. printing text), no additional dependencies ar

```toml
[dependencies]
escpos = "0.6.1"
escpos = "0.6.2"
```

If you need all [features](#Features-list), you can use the `full` feature:

```toml
[dependencies]
escpos = { version = "0.6.1", features = ["full"] }
escpos = { version = "0.6.2", features = ["full"] }
```

Or you can use `cargo add` command:
Expand Down

0 comments on commit a06d451

Please sign in to comment.