Skip to content

Commit d9d1af1

Browse files
committed
build: implement version minor 0.2.0
1 parent 3c67a5f commit d9d1af1

File tree

5 files changed

+31
-23
lines changed

5 files changed

+31
-23
lines changed

.bumplus.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = '0.1.1'
1+
version = '0.2.0'
22

33
[[files."CHANGELOG.rst"]]
44
search = """

CHANGELOG.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ This file uses change log convention from `keep a CHANGELOG`_.
88
`Unreleased`_
99
+++++++++++++
1010

11+
`0.2.0`_ - 2019-06-23
12+
++++++++++++++++++++++
13+
14+
- `6 <#6>` - feat: implement var environment
15+
- `5 <#5>` - chore: change pip to pipenv
16+
1117
`0.1.1`_ - 2019-02-02
1218
++++++++++++++++++++++
1319

@@ -17,7 +23,8 @@ This file uses change log convention from `keep a CHANGELOG`_.
1723
++++++++++++++++++++++
1824

1925

20-
.. _`Unreleased`: https://github.com/luismayta/zsh-flutter/compare/0.1.1...HEAD
26+
.. _`Unreleased`: https://github.com/luismayta/zsh-flutter/compare/0.2.0...HEAD
27+
.. _`0.2.0`: https://github.com/luismayta/zsh-flutter/compare/0.1.1...0.2.0
2128
.. _`0.1.1`: https://github.com/luismayta/zsh-flutter/compare/0.1.0...0.1.1
2229
.. _`0.1.0`: https://github.com/luismayta/zsh-flutter/compare/0.0.0...0.1.0
2330
.. _0.0.0: https://gitlab.com/luismayta/zsh-flutter/compare/0.0.0...0.0.0

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Build
66

77
|Build Status| |GitHub issues| |GitHub license|
88

9-
:Version: 0.1.1
9+
:Version: 0.2.0
1010
:Web: https://github.com/luismayta/zsh-flutter
1111
:Download: https://github.com/luismayta/zsh-flutter
1212
:Source: https://github.com/luismayta/zsh-flutter

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.1
1+
0.2.0

setup.cfg

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
files = VERSION README.rst
33
commit = False
44
tag = False
5-
current_version = 0.1.1
5+
current_version = 0.2.0
66

77
[bumpversion:file:setup.cfg]
88
search = version='{current_version}'
@@ -19,7 +19,7 @@ exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules
1919
doctests = True
2020
inline-quotes = single
2121
accept-encodings = utf-8
22-
per-file-ignores =
22+
per-file-ignores =
2323
tests/*.py: S101, Z432
2424
hooks/*.py: T001
2525
**/*.py: D100, D104, D106, D401, X100
@@ -41,32 +41,33 @@ warn_unused_configs = True
4141
[isort]
4242
line_length = 100
4343
default_section = THIRDPARTY
44-
atomic=true
45-
known_standard_library=types
44+
atomic = true
45+
known_standard_library = types
4646
combine_as_imports = true
4747
include_trailing_comma = true
48-
known_first_party=zsh-flutter
49-
known_third_party=tests
48+
known_first_party = zsh-flutter
49+
known_third_party = tests
5050
not_skip = __init__.py
5151
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
5252

5353
[wheel]
5454
universal = 1
5555

5656
[aliases]
57-
test=pytest
57+
test = pytest
5858

5959
[tool:pytest]
6060
norecursedirs = "build" "docs" "docs[\/]_build" ".egg"
61-
addopts =
62-
--cov zsh-flutter
63-
--cov-report html
64-
--ignore setup.py
65-
--ignore test_envs.py
66-
--ignore docs/
67-
--ignore .eggs/
68-
--ignore .pytest_cache/
69-
--ignore .mypy_cache
70-
--ignore .egg
71-
-s -v
72-
--doctest-modules
61+
addopts =
62+
--cov zsh-flutter
63+
--cov-report html
64+
--ignore setup.py
65+
--ignore test_envs.py
66+
--ignore docs/
67+
--ignore .eggs/
68+
--ignore .pytest_cache/
69+
--ignore .mypy_cache
70+
--ignore .egg
71+
-s -v
72+
--doctest-modules
73+

0 commit comments

Comments
 (0)