Skip to content

Commit

Permalink
v1.0.1: Fix ancient time dependency
Browse files Browse the repository at this point in the history
This was technically a CVE for a race conditon. We're fixing this so
dbcrossbar can fix it as well.
  • Loading branch information
emk committed Jul 14, 2023
1 parent c02f2a3 commit 6dfbd06
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,16 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.1] - 2023-07-14

### Fixed

- Remove dependency on `time` 1.4, which had a long-standing race condition. This is most useful for anyone still using the `bigml` library, which is probably just `dbcrossbar` at this point.

## [1.0.0] - 2022-10-14

### Fixed

- Update to latest versions of dependencies and latest Rust compiler. Should be backwards compatible with 0.9.2.
- Set official maintenance status to "as-is". Issues that affect Faraday or `dbcrossbar` will still be addressed. No guarantees about anything else.

Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions bigml-parallel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bigml-parallel"
version = "1.0.0"
version = "1.0.1"
authors = ["Eric Kidd <git@randomhacks.net>"]
edition = "2018"

Expand All @@ -16,7 +16,7 @@ cli_test_dir = "0.1.5"

[dependencies]
anyhow = { version = "1.0.51", features = ["backtrace"] }
bigml = { version = "=1.0.0", path = "../bigml" }
bigml = { version = "=1.0.1", path = "../bigml" }
bytes = "1.0.1"
# This makes the executable bigger, but it makes --help much nicer.
clap = { version = "4", features = ["wrap_help", "derive"] }
Expand Down
2 changes: 1 addition & 1 deletion bigml/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bigml"
version = "1.0.0"
version = "1.0.1"
authors = ["Eric Kidd <git@randomhacks.net>"]

description = "Unofficial BigML client bindings"
Expand Down

0 comments on commit 6dfbd06

Please sign in to comment.