Skip to content

Commit a390027

Browse files
committed
bump version to v1.0.0
1 parent a7b183f commit a390027

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

CHANGELOG.md

+23-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,36 @@
1+
## 1.0.0
2+
3+
I didn't get around to everything I listed in #44 as a release blocker for 1.0,
4+
but with Django going 2.0 and dropping backwards compatibility, I decided this
5+
library needs some more stability. In the future look for more removals as
6+
support for older versions of Django keep getting dropped.
7+
8+
https://github.com/crccheck/django-object-actions/compare/v0.10.0...v1.0.0
9+
10+
### Added
11+
* [430be02e59] - Add support for Django 2.0 (#85)
12+
13+
### Changed
14+
* [a7b183f3c1] - Cleanup random Django version support docs (#86)
15+
* [81af3e7cd5] - Add a redirect example to the README (#82)
16+
117
## 0.10.0
218

319
* Add support for Django 1.11 (#76 #78)
420

21+
https://github.com/crccheck/django-object-actions/compare/v0.9.0...v0.10.0
22+
523
## 0.9.0
624

725
* Add support for all primary key formats (#75)
826
* Add support for Django 1.10 (#74)
9-
* Remove support for Django 1.6 (#73)
1027
* Documentation tweaks (#71 #70)
1128

29+
### Removed
30+
* Remove support for Django 1.6 (#73)
31+
32+
https://github.com/crccheck/django-object-actions/compare/v0.8.2...v0.9.0
33+
1234
## 0.8.2
1335

1436
* Fix how the demo site stopped working because of bad settings

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ version:
8383
# 3. run `make release`
8484
# 4. `git push --tags origin master`
8585
# 5. update release notes
86+
# 6. `chandler push`
87+
# 6. `make build docker/publish`
8688
release: clean version
8789
@git commit -am "bump version to v$(VERSION)"
8890
@git tag v$(VERSION)

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.0
1+
1.0.0

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name='django-object-actions',
6-
version='0.10.0',
6+
version='1.0.0',
77
author='Chris Chang',
88
author_email='c@crccheck.com',
99
url='https://github.com/crccheck/django-object-actions',

0 commit comments

Comments
 (0)