diff --git a/CHANGELOG.md b/CHANGELOG.md index 65bc3e6..55649b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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.0-beta.2] - 2021-12-02 + +### Fixed + +- Fix `job_timeout` conversion to `ttlActiveSeconds` in the Kubernetes YAML. + ## [1.0.0-beta.1] - 2021-11-24 This release adds a "babysitter" process inside each `falconerid`. We use this to monitor jobs and datums, and detect and/or recover from various types of errors. Updating an existing cluster _should_ be fine, but it's likely to spend a minute or two detecting and marking problems with old jobs. So please exercise appropriate caution. diff --git a/Cargo.lock b/Cargo.lock index 7e735ea..c84479b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -588,7 +588,7 @@ checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" [[package]] name = "falconeri" -version = "1.0.0-beta.1" +version = "1.0.0-beta.2" dependencies = [ "base64", "crossbeam", @@ -607,7 +607,7 @@ dependencies = [ [[package]] name = "falconeri-worker" -version = "1.0.0-beta.1" +version = "1.0.0-beta.2" dependencies = [ "crossbeam", "env_logger", @@ -621,7 +621,7 @@ dependencies = [ [[package]] name = "falconeri_common" -version = "1.0.0-beta.1" +version = "1.0.0-beta.2" dependencies = [ "anyhow", "backoff", @@ -648,7 +648,7 @@ dependencies = [ [[package]] name = "falconerid" -version = "1.0.0-beta.1" +version = "1.0.0-beta.2" dependencies = [ "falconeri_common", "headers", diff --git a/falconeri-worker/Cargo.toml b/falconeri-worker/Cargo.toml index d8ba2d4..cf2c3e5 100644 --- a/falconeri-worker/Cargo.toml +++ b/falconeri-worker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "falconeri-worker" -version = "1.0.0-beta.1" +version = "1.0.0-beta.2" authors = ["Eric Kidd "] edition = "2018" diff --git a/falconeri/Cargo.toml b/falconeri/Cargo.toml index 991e78a..7613cea 100644 --- a/falconeri/Cargo.toml +++ b/falconeri/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Eric Kidd "] name = "falconeri" -version = "1.0.0-beta.1" +version = "1.0.0-beta.2" edition = "2018" license = "Apache-2.0 OR MIT" diff --git a/falconeri_common/Cargo.toml b/falconeri_common/Cargo.toml index e0bc340..20ba962 100644 --- a/falconeri_common/Cargo.toml +++ b/falconeri_common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "falconeri_common" -version = "1.0.0-beta.1" +version = "1.0.0-beta.2" authors = ["Eric Kidd "] edition = "2018" diff --git a/falconerid/Cargo.toml b/falconerid/Cargo.toml index b9ea4d5..7165112 100644 --- a/falconerid/Cargo.toml +++ b/falconerid/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "falconerid" -version = "1.0.0-beta.1" +version = "1.0.0-beta.2" authors = ["Eric Kidd "] edition = "2018"