Skip to content

Commit 775eabf

Browse files
committed
Bump version: 1.0.2 → 1.1.0
1 parent 6423cae commit 775eabf

File tree

4 files changed

+53
-73
lines changed

4 files changed

+53
-73
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
year = '2014-2015'
2525
author = 'Ionel Cristian Mărieș'
2626
copyright = '{0}, {1}'.format(year, author)
27-
version = release = '1.0.2'
27+
version = release = '1.1.0'
2828
import sphinx_py3doc_enhanced_theme
2929
html_theme = "sphinx_py3doc_enhanced_theme"
3030
html_theme_path = [sphinx_py3doc_enhanced_theme.get_html_theme_path()]

setup.cfg

Lines changed: 50 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -1,87 +1,67 @@
1+
[bumpversion]
2+
current_version = 1.1.0
3+
commit = True
4+
tag = True
5+
16
[aliases]
27
release = register clean --all sdist
38

49
[flake8]
510
max-line-length = 140
611
exclude = tests/*,*/migrations/*,*/south_migrations/*
712

8-
[bumpversion]
9-
current_version = 1.0.2
10-
commit = True
11-
tag = True
12-
1313
[bumpversion:file:setup.py]
14+
1415
[bumpversion:file:docs/conf.py]
16+
1517
[bumpversion:file:src/lazy_object_proxy/__init__.py]
1618

1719
[pytest]
18-
norecursedirs =
19-
.git
20-
.tox
21-
.env
22-
dist
23-
build
24-
south_migrations
25-
migrations
26-
python_files =
27-
test_*.py
28-
*_test.py
29-
tests.py
30-
addopts =
31-
-rxEfs
32-
--strict
33-
--ignore=docs/conf.py
34-
--ignore=setup.py
35-
--ignore=ci
36-
--doctest-modules
37-
--doctest-glob=\*.rst
38-
--tb=short
39-
markers =
40-
xfail_subclass: Expected test to fail with a subclass of Proxy.
41-
xfail_simple: Expected test to fail on the `simple` implementation.
20+
norecursedirs =
21+
.git
22+
.tox
23+
.env
24+
dist
25+
build
26+
south_migrations
27+
migrations
28+
python_files =
29+
test_*.py
30+
*_test.py
31+
tests.py
32+
addopts =
33+
-rxEfs
34+
--strict
35+
--ignore=docs/conf.py
36+
--ignore=setup.py
37+
--ignore=ci
38+
--doctest-modules
39+
--doctest-glob=\*.rst
40+
--tb=short
41+
markers =
42+
xfail_subclass: Expected test to fail with a subclass of Proxy.
43+
xfail_simple: Expected test to fail on the `simple` implementation.
4244

4345
[isort]
44-
force_single_line=True
45-
line_length=120
46-
known_first_party=lazy_object_proxy
47-
default_section=THIRDPARTY
48-
forced_separate=test_lazy_object_proxy
46+
force_single_line = True
47+
line_length = 120
48+
known_first_party = lazy_object_proxy
49+
default_section = THIRDPARTY
50+
forced_separate = test_lazy_object_proxy
4951

5052
[matrix]
51-
# This is the configuration for the `./bootstrap.py` script.
52-
# It generates `.travis.yml`, `tox.ini` and `appveyor.yml`.
53-
#
54-
# Syntax: [alias:] value [!variable[glob]] [&variable[glob]]
55-
#
56-
# alias:
57-
# - is used to generate the tox environment
58-
# - it's optional
59-
# - if not present the alias will be computed from the `value`
60-
# value:
61-
# - a value of "-" means empty
62-
# !variable[glob]:
63-
# - exclude the combination of the current `value` with
64-
# any value matching the `glob` in `variable`
65-
# - can use as many you want
66-
# &variable[glob]:
67-
# - only include the combination of the current `value`
68-
# when there's a value matching `glob` in `variable`
69-
# - can use as many you want
70-
71-
python_versions =
72-
2.6
73-
2.7
74-
3.3
75-
3.4
76-
pypy
77-
78-
dependencies =
79-
:Django !python_versions[2.6]
80-
: &python_versions[2.6]
81-
82-
coverage_flags =
83-
: true
84-
nocover: false
53+
python_versions =
54+
2.6
55+
2.7
56+
3.3
57+
3.4
58+
pypy
59+
dependencies =
60+
:Django !python_versions[2.6]
61+
: &python_versions[2.6]
62+
coverage_flags =
63+
: true
64+
nocover: false
65+
environment_variables =
66+
-
8567

86-
environment_variables =
87-
-

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def _unavailable(self, e):
6161

6262
setup(
6363
name='lazy-object-proxy',
64-
version='1.0.2',
64+
version='1.1.0',
6565
license='BSD',
6666
description='A fast and thorough lazy object proxy.',
6767
long_description='%s\n%s' % (read('README.rst'), re.sub(':[a-z]+:`~?(.*?)`', r'``\1``', read('CHANGELOG.rst'))),

src/lazy_object_proxy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.0.2"
1+
__version__ = "1.1.0"
22

33
__all__ = "Proxy",
44

0 commit comments

Comments
 (0)