-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f2d1cb
commit 025fba9
Showing
5 changed files
with
34 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,25 @@ | ||
## [0.1.7] - Unreleased | ||
- Fixes bug where disabled `Experiments` would not reset the runtime context. | ||
|
||
## [0.1.6] - 2024-06-17 | ||
- [#1](https://github.com/omkarmoghe/lab_coat/issues/1) | ||
- Adds [#1](https://github.com/omkarmoghe/lab_coat/issues/1) | ||
|
||
## [0.1.5] - 2024-05-20 | ||
- Adds `select_observation` to allow users to control which observation value is returned by the experiment. This helps with controlled rollout. | ||
- Adds `select_observation` to allow users to control which `Observation` value is returned by the `Experiment`. This helps with controlled rollout. | ||
|
||
## [0.1.4] - 2024-04-19 | ||
- Remove the arity check, it's not very intuitive | ||
- Removes the arity check, it's not very intuitive | ||
- Adds a `@context` that gets set at runtime and reset after each run. This is a much simpler way for methods to access a shared runtime context that can be set per `run!`. | ||
|
||
## [0.1.3] - 2024-04-17 | ||
- `Experiment` now enforces arity at runtime for the `#enabled?`, `control`, and `candidate` methods. | ||
- Add an arity check that `Experiment` now enforces at runtime for the `#enabled?`, `control`, and `candidate` methods. | ||
|
||
## [0.1.2] - 2024-04-15 | ||
- use `Benchmark` to capture the duration with more details | ||
- add `to_h` methods to `Result` and `Observation` for convenience | ||
- Adds `Benchmark` to capture the duration with more details. | ||
- Adds `to_h` methods to `Result` and `Observation` for convenience. | ||
|
||
## [0.1.1] - 2024-04-08 | ||
- add `#slug` method to `Observation` | ||
- Adds `#slug` method to `Observation`. | ||
|
||
## [0.1.0] - 2024-04-08 | ||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
lab_coat (0.1.6) | ||
lab_coat (0.1.7) | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module LabCoat | ||
VERSION = "0.1.6" | ||
VERSION = "0.1.7" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters