diff --git a/HISTORY.md b/HISTORY.md index 04e29be16..e6d95a733 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,17 @@ # History of Changes +#### 1.9.10 +- Fix scale means for cubes with single-element categories + +#### 1.9.9 +- Enable other category-like types when comparing pairwise (datetime, text and binned numeric) + +#### 1.9.8 +- Enable pruning for min-base-size masks + +#### 1.9.7 +- Implement Min Base Size suppression masks + #### 1.9.8 - Enable pruning for min-base-size masks diff --git a/README.md b/README.md index 3cfd77b5e..3d59e3469 100644 --- a/README.md +++ b/README.md @@ -112,22 +112,14 @@ The detailed description can be found ## Changes +#### 1.9.13 +- Parametrize pairwise comparisons based on column +- Add placeholders for insertions + #### 1.9.12 - Implement pairwise comparisons based on T-Stats #### 1.9.11 - Eliminate `memoize` from `Dimension`, and thus reduce probability of threading bugs -#### 1.9.10 -- Fix scale means for cubes with single-element categories - -#### 1.9.9 -- Enable other category-like types when comparing pairwise (datetime, text and binned numeric) - -#### 1.9.8 -- Enable pruning for min-base-size masks - -#### 1.9.7 -- Implement Min Base Size suppression masks - For a complete list of changes see [history](https://github.com/Crunch-io/crunch-cube/blob/master/HISTORY.md). diff --git a/src/cr/cube/__init__.py b/src/cr/cube/__init__.py index c182de7a0..15e7f4ae9 100644 --- a/src/cr/cube/__init__.py +++ b/src/cr/cube/__init__.py @@ -2,4 +2,4 @@ """Initialization module for crunch-cube package.""" -__version__ = "1.9.12" +__version__ = "1.9.13"