summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Matusiak <numerodix@gmail.com>2021-05-05 16:54:57 +1000
committerMartin Matusiak <numerodix@gmail.com>2021-05-05 16:54:57 +1000
commit7bd2c5a22ba169262affa4b3336d73fadd4aa67e (patch)
tree6b144404206a394adefb9522942079e2ad5f9e67
parentd3883fc8c38006d4ec429477a0c532b222454165 (diff)
downloadansicolor-7bd2c5a22ba169262affa4b3336d73fadd4aa67e.tar.gz
bump version0.3.1
-rw-r--r--README.rst3
-rw-r--r--ansicolor/__init__.py2
-rw-r--r--docs/src/changes.rst5
-rw-r--r--setup.cfg2
4 files changed, 9 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index 4832a26..e35a193 100644
--- a/README.rst
+++ b/README.rst
@@ -126,7 +126,8 @@ Re-formatting code
Release a new version
^^^^^^^^^^^^^^^^^^^^^
-1. Make sure ``develop`` branch is in sync with ``master``.
+1. Before starting work on a change/fix/whatever, make sure there is no
+ unfinished work on ``develop`` and merge ``master`` into ``develop``.
2. Make all the changes on ``develop``.
Quality assurance (see steps above for how to):
diff --git a/ansicolor/__init__.py b/ansicolor/__init__.py
index c56a499..19830ca 100644
--- a/ansicolor/__init__.py
+++ b/ansicolor/__init__.py
@@ -55,5 +55,5 @@ __all__ = [
]
__major_version__ = "0.3"
-__release__ = "0"
+__release__ = "1"
__version__ = "%s.%s" % (__major_version__, __release__)
diff --git a/docs/src/changes.rst b/docs/src/changes.rst
index 1e126b7..20daac9 100644
--- a/docs/src/changes.rst
+++ b/docs/src/changes.rst
@@ -2,6 +2,11 @@ Release notes
=============
+0.3.1
+-----
+
+- Updating changelog (belatedly).
+
0.3.0
-----
diff --git a/setup.cfg b/setup.cfg
index 92e2d45..c1e34c7 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
[flake8]
exclude = .tox/,build/,docs/
-ignore = E301,E302,E303,W503,W605
+ignore = E203,E301,E302,E303,W503,W605
max_line_length = 88
[wheel]