Skip to content

Commit be0ed1d

Browse files
authored
[MRG] Release 0.8.1.0 and correct doc build (#332)
* update ersion and change doc build * update release file * debug release of doc * set version number to 0.8.1.0
1 parent 7ad97e3 commit be0ed1d

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

.circleci/config.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,10 @@ workflows:
161161
default:
162162

163163
jobs:
164-
- build_docs
164+
- build_docs:
165+
filters:
166+
tags:
167+
only: /[0-9]+(\.[0-9]+)*$/
165168
- deploy_master:
166169
requires:
167170
- build_docs
@@ -174,7 +177,6 @@ workflows:
174177
- build_docs
175178
filters:
176179
branches:
177-
only:
178-
- master
180+
ignore: /.*/
179181
tags:
180182
only: /[0-9]+(\.[0-9]+)*$/

RELEASES.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# Releases
22

33

4+
## 0.8.1.0
5+
*December 2021*
6+
7+
This is a bug fix release that will remove the `benchmarks` module form the
8+
installation and correct the documentation generation.
9+
10+
#### Closed issues
11+
12+
- Bug in documentation generation (tag VS master push, PR #332)
13+
- Remove installation of the benchmarks in global namespace (Issue #331, PR #333)
14+
15+
416
## 0.8.1
517
*December 2021*
618

ot/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
# utils functions
5151
from .utils import dist, unif, tic, toc, toq
5252

53-
__version__ = "0.8.1"
53+
__version__ = "0.8.1.0"
5454

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

0 commit comments

Comments
 (0)