Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,10 @@ workflows:
default:

jobs:
- build_docs
- build_docs:
filters:
tags:
only: /[0-9]+(\.[0-9]+)*$/
- deploy_master:
requires:
- build_docs
Expand All @@ -174,7 +177,6 @@ workflows:
- build_docs
filters:
branches:
only:
- master
ignore: /.*/
tags:
only: /[0-9]+(\.[0-9]+)*$/
12 changes: 12 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# Releases


## 0.8.1.0
*December 2021*

This is a bug fix release that will remove the `benchmarks` module form the
installation and correct the documentation generation.

#### Closed issues

- Bug in documentation generation (tag VS master push, PR #332)
- Remove installation of the benchmarks in global namespace (Issue #331, PR #333)


## 0.8.1
*December 2021*

Expand Down
2 changes: 1 addition & 1 deletion ot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# utils functions
from .utils import dist, unif, tic, toc, toq

__version__ = "0.8.1"
__version__ = "0.8.1.0"

__all__ = ['emd', 'emd2', 'emd_1d', 'sinkhorn', 'sinkhorn2', 'utils',
'datasets', 'bregman', 'lp', 'tic', 'toc', 'toq', 'gromov',
Expand Down