Skip to content
This repository was archived by the owner on Aug 8, 2020. It is now read-only.

Commit df0ecad

Browse files
author
Tonye Jack
committed
Merge branch 'release/1.0.14'
2 parents a503c12 + b2006dc commit df0ecad

File tree

4 files changed

+35
-3
lines changed

4 files changed

+35
-3
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = VERSION = (1, 0, 13)
2+
current_version = VERSION = (1, 0, 14)
33
parse = ^(\s*VERSION)(\s=\s)(\({1})(?P<major>\d+),\s(?P<minor>\d+),\s(?P<patch>\d+)(\){1})$
44
serialize = VERSION = ({major}, {minor}, {patch})
55
commit = True

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,22 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## [v1.0.13](https://github.com/jackton1/django-check-constraint/releases/tag/v1.0.13) ([compare](https://github.com/jackton1/django-check-constraint/compare/v1.0.12...v1.0.13))
7+
## [v1.1.0](https://github.com/jackton1/django-check-constraint/releases/tag/v1.1.0) ([compare](https://github.com/jackton1/django-check-constraint/compare/v1.0.13...v1.1.0))
8+
9+
### Added
10+
- Added MANIFEST.in ([d19ea85](https://github.com/jackton1/django-check-constraint/commit/d19ea854e24ead87487f4f7395ee2f58c60216ce)).
11+
12+
### Misc
13+
- "2020-02-24 15:23 - Increased django-check-constraint version:VERSION = (1, 0, 13) to VERSION = (1, 0, 14)" ([948eb4b](https://github.com/jackton1/django-check-constraint/commit/948eb4bccc6ad3e915c7f361142087c1fc25f3aa)).
14+
15+
16+
## [v1.0.13](https://github.com/jackton1/django-check-constraint/releases/tag/v1.0.13) ([compare](https://github.com/jackton1/django-check-constraint/compare/v1.0.12...v1.0.13)) - 2020-02-24
817

918
### Misc
1019
- "2020-02-24 14:38 - Increased django-check-constraint version:VERSION = (1, 0, 12) to VERSION = (1, 0, 13)" ([3c1f894](https://github.com/jackton1/django-check-constraint/commit/3c1f89422fb799cb1554204e34902ea2175f899e)).
1120
- Create FUNDING.yml ([4df4051](https://github.com/jackton1/django-check-constraint/commit/4df40510d3ac68cc4c1c0c4990758d60897ccbc9)).
1221
- Update setup.py ([88c565f](https://github.com/jackton1/django-check-constraint/commit/88c565fb67d014768e1373378c822e6c0c81a474)).
22+
- Updated CHANGELOG.md. ([9ee129a](https://github.com/jackton1/django-check-constraint/commit/9ee129ac3c1aa4d3100d4f59be1ef9b9ebf9e388)).
1323

1424

1525
## [v1.0.12](https://github.com/jackton1/django-check-constraint/releases/tag/v1.0.12) ([compare](https://github.com/jackton1/django-check-constraint/compare/v1.0.11...v1.0.12)) - 2020-02-22

MANIFEST.in

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
recursive-include check_constraint *.py *.html
2+
recursive-exclude demo *
3+
4+
include *.md
5+
exclude *.png
6+
exclude .envrc.example
7+
include *.py
8+
include *.txt
9+
include *.yaml
10+
exclude .bumpversion.cfg
11+
exclude .pre-commit-config.yaml
12+
exclude .coveragerc
13+
include LICENSE
14+
exclude Makefile
15+
exclude noxfile.py
16+
exclude demo
17+
exclude .github
18+
exclude .github/workflows/check_constraints.yml
19+
exclude .github/workflows/pythonpublish.yml
20+
exclude .github/workflows/release.yml
21+
exclude .github/FUNDING.yml
22+
exclude .pypirc

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
else:
5454
LONG_DESCRIPTION = ""
5555

56-
VERSION = (1, 0, 13)
56+
VERSION = (1, 0, 14)
5757

5858
version = ".".join(map(str, VERSION))
5959

0 commit comments

Comments
 (0)