Skip to content

Commit 060a602

Browse files
committed
Add release notes for v0.1.4
1 parent 00e803e commit 060a602

File tree

2 files changed

+17
-11
lines changed

2 files changed

+17
-11
lines changed

HISTORY.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# History
22

3-
## 0.1.3 (2020-10-16)
3+
## 0.1.4 - 2020-10-16
4+
5+
Minor maintenance version to update dependencies and documentation, and
6+
also make the demo data loading function parse dates properly.
7+
8+
## 0.1.3 - 2020-10-16
49

510
This version includes several minor improvements to the PAR model and the
611
way the sequences are generated:
@@ -11,11 +16,11 @@ way the sequences are generated:
1116
* NaN values are generated for numerical columns only if there were NaNs in the input data.
1217
* Constant columns can now be modeled.
1318

14-
## 0.1.2 (2020-09-15)
19+
## 0.1.2 - 2020-09-15
1520

1621
Add BasicGAN Model and additional benchmarking results.
1722

18-
## 0.1.1 (2020-08-15)
23+
## 0.1.1 - 2020-08-15
1924

2025
This release includes a few new features to make DeepEcho work on more types of datasets
2126
as well as to making it easier to add new datasets to the benchmarking framework.
@@ -27,7 +32,7 @@ as well as to making it easier to add new datasets to the benchmarking framework
2732
* Add function `make_dataset` to create a dataset from a dataframe and just a few column names.
2833
* Add notebook tutorial to show how to create a datasets and use them.
2934

30-
## 0.1.0 (2020-08-11)
35+
## 0.1.0 - 2020-08-11
3136

3237
First release.
3338

Makefile

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ bumpversion-revert: ## Undo a previous bumpversion-release
224224

225225
CLEAN_DIR := $(shell git status --short | grep -v ??)
226226
CURRENT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2>/dev/null)
227+
CURRENT_VERSION := $(shell grep "^current_version" setup.cfg | grep -o "dev[0-9]*")
227228
CHANGELOG_LINES := $(shell git diff HEAD..origin/stable HISTORY.md 2>&1 | wc -l)
228229

229230
.PHONY: check-clean
@@ -238,14 +239,20 @@ ifneq ($(CURRENT_BRANCH),master)
238239
$(error Please make the release from master branch\n)
239240
endif
240241

242+
.PHONY: check-candidate
243+
check-candidate: ## Check if a release candidate has been made
244+
ifeq ($(CURRENT_VERSION),dev0)
245+
$(error Please make a release candidate and test it before atempting a release)
246+
endif
247+
241248
.PHONY: check-history
242249
check-history: ## Check if HISTORY.md has been modified
243250
ifeq ($(CHANGELOG_LINES),0)
244251
$(error Please insert the release notes in HISTORY.md before releasing)
245252
endif
246253

247254
.PHONY: check-release
248-
check-release: check-clean check-master check-history ## Check if the release can be made
255+
check-release: check-clean check-candidate check-master check-history ## Check if the release can be made
249256
@echo "A new release can be made"
250257

251258
.PHONY: release
@@ -259,9 +266,3 @@ release-candidate: check-master publish bumpversion-candidate
259266

260267
.PHONY: release-candidate-test
261268
release-candidate-test: check-clean check-master publish-test
262-
263-
.PHONY: release-minor
264-
release-minor: check-release bumpversion-minor release
265-
266-
.PHONY: release-major
267-
release-major: check-release bumpversion-major release

0 commit comments

Comments
 (0)