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

Commit 520e07d

Browse files
author
Tonye Jack
committed
Merge branch 'release/1.0.16'
2 parents 43e9070 + 6136a7b commit 520e07d

File tree

6 files changed

+27
-3
lines changed

6 files changed

+27
-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, 15)
2+
current_version = VERSION = (1, 0, 16)
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

.pre-commit-config.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,7 @@ repos:
1515
rev: 19.10b0
1616
hooks:
1717
- id: black
18+
- repo: https://github.com/mgedmin/check-manifest
19+
rev: "0.40"
20+
hooks:
21+
- id: check-manifest

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,23 @@ 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.15](https://github.com/jackton1/django-check-constraint/releases/tag/v1.0.15) ([compare](https://github.com/jackton1/django-check-constraint/compare/v1.0.14...v1.0.15))
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.15...v1.1.0))
8+
9+
### Added
10+
- Added pre-commit hook. ([4a88d23](https://github.com/jackton1/django-check-constraint/commit/4a88d237377ed5c1a0c9b5a939fb4f549fd52646)).
11+
12+
### Misc
13+
- "2020-02-24 15:38 - Increased django-check-constraint version:VERSION = (1, 0, 15) to VERSION = (1, 0, 16)" ([18cc64c](https://github.com/jackton1/django-check-constraint/commit/18cc64cb5a7c2b4cc621b4068af145afd5fde914)).
14+
- Updated the MANIFEST.in ([ab4ec80](https://github.com/jackton1/django-check-constraint/commit/ab4ec80400088ba4a012825be0799677b710df27)).
15+
- Updated the MANIFEST.in ([6236278](https://github.com/jackton1/django-check-constraint/commit/6236278efc7bc0744ed18cbd95d0ea6d34914629)).
16+
- Updated the MANIFEST.in ([ec81049](https://github.com/jackton1/django-check-constraint/commit/ec8104900a91f090da638e1f86da3cb76160dd1c)).
17+
18+
19+
## [v1.0.15](https://github.com/jackton1/django-check-constraint/releases/tag/v1.0.15) ([compare](https://github.com/jackton1/django-check-constraint/compare/v1.0.14...v1.0.15)) - 2020-02-24
820

921
### Misc
1022
- "2020-02-24 15:24 - Increased django-check-constraint version:VERSION = (1, 0, 14) to VERSION = (1, 0, 15)" ([2d13e70](https://github.com/jackton1/django-check-constraint/commit/2d13e70c0324e08e7ea0248d7cd39ef02714b8ae)).
23+
- Updated CHANGELOG.md. ([43e9070](https://github.com/jackton1/django-check-constraint/commit/43e9070453156d9883c873d66a78ecc8f4c6e22a)).
1124

1225

1326
## [v1.0.14](https://github.com/jackton1/django-check-constraint/releases/tag/v1.0.14) ([compare](https://github.com/jackton1/django-check-constraint/compare/v1.0.13...v1.0.14)) - 2020-02-24

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
recursive-include check_constraint *.py *.html
22
recursive-exclude demo *
3+
recursive-exclude django_check_constraint *
34

45
include *.md
56
exclude *.png
@@ -15,6 +16,7 @@ exclude Makefile
1516
exclude noxfile.py
1617
exclude demo
1718
exclude .github
19+
exclude check_constraint/tests.py
1820
exclude .github/workflows/check_constraints.yml
1921
exclude .github/workflows/pythonpublish.yml
2022
exclude .github/workflows/release.yml

setup.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,8 @@ exclude =
77
manage.py,
88
venv,
99
max-line-length = 95
10+
11+
[check-manifest]
12+
ignore =
13+
django_check_constraint
14+
.github/*

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, 15)
56+
VERSION = (1, 0, 16)
5757

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

0 commit comments

Comments
 (0)