summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2018-12-29 23:43:33 +0100
committerIlya Etingof <etingof@gmail.com>2018-12-29 23:43:33 +0100
commit25cf116ef8d11bb0e08454c0f3635c9f4002c2d6 (patch)
tree2e2f64d0e817b7bf853e7e4274e5fdd89e10d9c5
parentdf6fc9a8aae16e32f60a1ff1f42a52c8c344a993 (diff)
downloadpyasn1-git-25cf116ef8d11bb0e08454c0f3635c9f4002c2d6.tar.gz
Prepare for 0.4.6
-rw-r--r--.travis.yml10
-rw-r--r--CHANGES.rst5
-rw-r--r--pyasn1/__init__.py2
3 files changed, 6 insertions, 11 deletions
diff --git a/.travis.yml b/.travis.yml
index 3152686..4ca7b33 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,31 +4,24 @@ matrix:
include:
- os: linux
dist: trusty
- sudo: false
python: '2.6'
- os: linux
dist: trusty
- sudo: false
python: '2.7'
- os: linux
dist: trusty
- sudo: false
python: '3.2'
- os: linux
dist: trusty
- sudo: false
python: '3.3'
- os: linux
dist: trusty
- sudo: false
python: '3.4'
- os: linux
dist: trusty
- sudo: false
python: '3.5'
- os: linux
dist: trusty
- sudo: false
python: '3.6'
- os: linux
dist: xenial
@@ -36,15 +29,12 @@ matrix:
python: '3.7'
- os: linux
dist: trusty
- sudo: true
python: 'nightly'
- os: linux
dist: trusty
- sudo: false
python: 'pypy'
- os: linux
dist: trusty
- sudo: false
python: 'pypy3'
install:
- pip install codecov
diff --git a/CHANGES.rst b/CHANGES.rst
index c4084f3..dabdb33 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,4 +1,9 @@
+Revision 0.4.6, released XX-01-2019
+-----------------------------------
+
+No changes yet
+
Revision 0.4.5, released 29-12-2018
-----------------------------------
diff --git a/pyasn1/__init__.py b/pyasn1/__init__.py
index 68db4f1..d780df2 100644
--- a/pyasn1/__init__.py
+++ b/pyasn1/__init__.py
@@ -1,7 +1,7 @@
import sys
# https://www.python.org/dev/peps/pep-0396/
-__version__ = '0.4.5'
+__version__ = '0.4.6'
if sys.version_info[:2] < (2, 4):
raise RuntimeError('PyASN1 requires Python 2.4 or later')