Skip to content

Commit

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

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

### Added

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

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

### Fixed

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

# 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"]
usb = ["dep:rusb"]
full = ["barcodes", "codes_2d", "graphics", "usb", "hidapi", "serial_port"]

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

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

0 comments on commit 1f8b2ae

Please sign in to comment.