Skip to content

Commit

Permalink
[MRG] Release 0.8.1.0 and correct doc build (#332)
Browse files Browse the repository at this point in the history
* update ersion and change doc build

* update release file

* debug release of doc

* set version number to 0.8.1.0
  • Loading branch information
rflamary authored Dec 31, 2021
1 parent 7ad97e3 commit be0ed1d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
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

0 comments on commit be0ed1d

Please sign in to comment.