Skip to content
This repository was archived by the owner on May 30, 2022. It is now read-only.

Commit 5bd4efe

Browse files
committed
0.9 Release
Signed-off-by: Chenxiong Qi <cqi@redhat.com>
1 parent 9d0ffb0 commit 5bd4efe

File tree

6 files changed

+48
-7
lines changed

6 files changed

+48
-7
lines changed

CHANGELOG.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
ChangeLog
22
=========
33

4+
0.9 (2019-06-20)
5+
----------------
6+
7+
- Fix .travis.yml to use Python 3.7 (Chenxiong Qi)
8+
- Update docs/source/conf.py to read package info properly (Chenxiong Qi)
9+
- Add Python 3.7 to and remove Python 3.5 from TravisCI (Chenxiong Qi)
10+
- Update scripts (Chenxiong Qi)
11+
- Ignore more directories from git (Chenxiong Qi)
12+
- Remove testenv py34 and py35 (Chenxiong Qi)
13+
- Add testenv py37 (Chenxiong Qi)
14+
- Fix typo in comment (Chenxiong Qi)
15+
- Fix renewing expired FILE ccache (Michael Simacek)
16+
- Remove flake8 from BuildRequires from SPEC (Chenxiong Qi)
17+
418
0.8 (2017-09-05)
519
----------------
620

README.rst

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
krbcontext
22
==========
33

4+
.. image:: https://img.shields.io/pypi/v/krbcontext.svg
5+
:alt: PyPI
6+
:target: https://pypi.org/project/krbcontext/
7+
8+
.. image:: https://img.shields.io/pypi/pyversions/krbcontext.svg
9+
:alt: PyPI - Python Version
10+
:target: https://pypi.org/project/krbcontext/
11+
412
.. image:: https://travis-ci.org/krbcontext/python-krbcontext.svg?branch=master
5-
:target: https://travis-ci.org/krbcontext/python-krbcontext
13+
:target: https://travis-ci.org/krbcontext/python-krbcontext
614

715
.. image:: https://codecov.io/gh/krbcontext/python-krbcontext/branch/master/graph/badge.svg
8-
:target: https://codecov.io/gh/krbcontext/python-krbcontext
16+
:target: https://codecov.io/gh/krbcontext/python-krbcontext
917

1018
``krbcontext`` provides a Kerberos context that you can put code inside, which
1119
requires a valid ticket in credential cache.

docs/source/index.rst

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,19 @@ Welcome to krbcontext's documentation!
88

99
Contents:
1010

11+
.. image:: https://img.shields.io/pypi/v/krbcontext.svg
12+
:alt: PyPI
13+
:target: https://pypi.org/project/krbcontext/
14+
15+
.. image:: https://img.shields.io/pypi/pyversions/krbcontext.svg
16+
:alt: PyPI - Python Version
17+
:target: https://pypi.org/project/krbcontext/
18+
1119
.. image:: https://travis-ci.org/krbcontext/python-krbcontext.svg?branch=master
12-
:target: https://travis-ci.org/krbcontext/python-krbcontext
20+
:target: https://travis-ci.org/krbcontext/python-krbcontext
1321

1422
.. image:: https://codecov.io/gh/krbcontext/python-krbcontext/branch/master/graph/badge.svg
15-
:target: https://codecov.io/gh/krbcontext/python-krbcontext
23+
:target: https://codecov.io/gh/krbcontext/python-krbcontext
1624

1725
.. toctree::
1826
:maxdepth: 2

docs/source/release-notes.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Release Notes
22
=============
33

4+
0.9 (2019-06-20)
5+
----------------
6+
7+
A major bug `#23`_ is fixed by Michael Simacek.
8+
9+
``py34`` and ``py35`` are removed from tox testenv, meanwhile ``py37`` is
10+
added.
11+
12+
There are massive fixes to helper scripts under directory ``scripts/``.
13+
14+
.. _#23: https://github.com/krbcontext/python-krbcontext/issues/23
15+
416
0.8 (2017-09-05)
517
----------------
618

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ universal = 1
33

44
[package]
55
name = krbcontext
6-
version = 0.8
6+
version = 0.9
77
author = Chenxiong Qi
88
author_email = qcxhome@gmail.com

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,8 @@ def get_test_requires():
6464
'Programming Language :: Python :: 2',
6565
'Programming Language :: Python :: 2.7',
6666
'Programming Language :: Python :: 3',
67-
'Programming Language :: Python :: 3.4',
68-
'Programming Language :: Python :: 3.5',
6967
'Programming Language :: Python :: 3.6',
68+
'Programming Language :: Python :: 3.7',
7069
'Topic :: Software Development :: Libraries',
7170
'Topic :: Software Development :: Libraries :: Python Modules',
7271
'Topic :: System :: Systems Administration',

0 commit comments

Comments
 (0)