Skip to content

Commit

Permalink
Version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jix committed Mar 6, 2022
1 parent 536a527 commit d6b8c37
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## flussab 0.3.0 (2022-03-06)

* Rename `ByteReader`/`ByteWriter` to `DeferredReader`/`DeferredWriter`
* Require `DeferredWriter` instead of any `Write` impl for faster writing
* Use `Config` structs instead of individual arguments for parser configs
* Add parser for the SAT competition output format
6 changes: 3 additions & 3 deletions flussab-cnf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "flussab-cnf"
version = "0.2.0"
version = "0.3.0"
authors = ["Jannis Harder <me@jix.one>"]
edition = "2021"
description = "DIMACS CNF file format parser and writer"
Expand All @@ -11,8 +11,8 @@ keywords = ["cnf", "dimacs-cnf", "parser", "writer"]
categories = ["parser-implementations", "encoding"]

[dependencies]
flussab = { version = "0.1.0", path = "../flussab" }
thiserror = "1.0.24"
flussab = { version = "0.3.0", path = "../flussab" }
thiserror = "1.0.30"
num-traits = "0.2.14"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion flussab/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "flussab"
version = "0.1.0"
version = "0.3.0"
authors = ["Jannis Harder <me@jix.one>"]
edition = "2021"
description = "Utilities for writing parsers"
Expand Down

0 comments on commit d6b8c37

Please sign in to comment.