Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
fabienbellanger committed Mar 14, 2024
1 parent fc763fd commit a4fb692
Show file tree
Hide file tree
Showing 4 changed files with 126 additions and 120 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Expand Up @@ -18,7 +18,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Security
-->

## `0.8.2` (2024-03-14) [CURRENT]
## `0.8.3` (2024-03-14) [CURRENT]

### Added

- Add tables for page codes `PC860` and `WPC1252`

## `0.8.2` (2024-03-14)

### Fixed

Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Expand Up @@ -9,28 +9,28 @@ license = "MIT"
name = "escpos"
readme = "README.md"
repository = "https://github.com/fabienbellanger/escpos-rs"
version = "0.8.2"
version = "0.8.3"

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

[features]
barcodes = []
codes_2d = []
default = ["barcodes", "codes_2d"]
full = ["barcodes", "codes_2d", "graphics", "usb", "hidapi", "serial_port"]
graphics = ["dep:image"]
usb = ["dep:rusb"]
hidapi = ["dep:hidapi"]
serial_port = ["dep:serialport"]
full = ["barcodes", "codes_2d", "graphics", "usb", "hidapi", "serial_port"]
usb = ["dep:rusb"]

[dependencies]
encoding_rs = "0.8.33"
hidapi = { version = "2.6.1", optional = true }
rusb = { version = "0.9.3", optional = true }
image = { version = "0.25.0", optional = true }
hidapi = {version = "2.6.1", optional = true}
image = {version = "0.25.0", optional = true}
lazy_static = "1.4.0"
log = "0.4.21"
serialport = { version = "4.3.0", optional = true }
rusb = {version = "0.9.3", optional = true}
serialport = {version = "4.3.0", optional = true}

[dev-dependencies]
env_logger = "0.11.3"
Expand Down

0 comments on commit a4fb692

Please sign in to comment.