From 3e8b314f742c9eb766bde99ccfe73dad05654390 Mon Sep 17 00:00:00 2001 From: Oliver Palmer Date: Sun, 3 Jul 2016 18:08:45 -0400 Subject: [PATCH 1/2] changelog update for 0.3.1 --- docs/source/changelog.rst | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 7db0af1..86fcde7 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -8,13 +8,21 @@ versions are shown first. Versions -------- -latest -~~~~~~ +0.3.1 +~~~~~ Notable enhancements and changes are: * :issue:`81` - :func:`pywincffi.user32.synchronization.WSAEventSelect` and :func:`pywincffi.user32.synchronization.WSAEnumNetworkEvents` + * Removal of the ``pywincffi.core.config`` module in :issue:`107`. The + module was mostly unused internally and was not being used as part of + the public APIs either. + * Improvements to the :mod:`pywincffi.core.dist` module in :issue:`106`. + This change allows pywincffi to add constants, functions, etc to the + loaded library when :func:`pywincffi.core.dist.load` is called. Before + certain constants, such as ``ERROR_INVALID_HANDLE``, had to be imported + from other modules rather than used directly from the library object. 0.3.0 ~~~~~ From 79585c0e27d88816dc135c0633b0486c38ec837a Mon Sep 17 00:00:00 2001 From: Oliver Palmer Date: Sun, 3 Jul 2016 18:09:18 -0400 Subject: [PATCH 2/2] update version to 0.3.1 --- README.rst | 2 +- pywincffi/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 58fd1d6..a66de00 100644 --- a/README.rst +++ b/README.rst @@ -13,7 +13,7 @@ Python Windows Wrapper Using CFFI :target: https://codecov.io/github/opalmer/pywincffi?branch=master :alt: code coverage -.. image:: https://readthedocs.org/projects/pywincffi/badge/?version=0.3.0 +.. image:: https://readthedocs.org/projects/pywincffi/badge/?version=0.3.1 :target: https://pywincffi.readthedocs.org/ :alt: documentation badge diff --git a/pywincffi/__init__.py b/pywincffi/__init__.py index 9f02a28..6f8b240 100644 --- a/pywincffi/__init__.py +++ b/pywincffi/__init__.py @@ -6,4 +6,4 @@ help and examples. """ -__version__ = (0, 3, 0) +__version__ = (0, 3, 1)