Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
kindly committed Jun 21, 2023
1 parent 238cbca commit 8580692
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "flatterer"
version = "0.19.5"
version = "0.19.6"
authors = ["David Raznick <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -14,9 +14,9 @@ serde_json = { version = "1.0.83", features = ["preserve_order"] }
pyo3 = { version = "0.18.3", features = ["extension-module", "eyre"] }
eyre= "0.6.8"
#libflatterer={path = "../libflatterer"}
libflatterer="0.19.4"
libflatterer="0.19.5"

flatterer-web="0.19.4"
flatterer-web="0.19.5"
#flatterer-web={path = "../flatterer-web"}

env_logger= "0.9.0"
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.

and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.19.6] - 2023-06-21

### Fixed
- Errors get raised for postgresql conversion.

## [0.19.5] - 2023-06-07

### Fixed
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ fn flatterer(_py: Python, m: &PyModule) -> PyResult<()> {
op.gzip_input = gzip_input;
op.json_path_selector = json_path_selector;


if let Err(err) = flatten_all(input_files, output_dir, op) {
if log_error {
log::error!("{}", err)
Expand Down

0 comments on commit 8580692

Please sign in to comment.