Skip to content

Commit

Permalink
Update changelog, bump version to 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphje committed Dec 11, 2016
1 parent bf6b051 commit 9245f8b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 5 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ We try to reduce backwards compatibility breakage only to major version releases
Release history
~~~~~~~~~~~~~~~

3.0.0 (future release)
----------------------
3.0.0 (2016-12-11)
------------------
This new release includes several backwards-incompatible changes, mostly because features were removed from the public API or have been renamed to obtain a more consistent API.

It was released after a long time of development, and does not even contain all features that were intended to go into this release, but it contains some important bugfixes that warranted a release.

New major features:

* Add volume shadow copy support for NTFS
Expand All @@ -29,6 +31,7 @@ Bugfixes:
* Fixed support for EnCase v7 (EX01) image files (contributed by pix)
* :attr:`index` is now always ``str``
* :attr:`Volume.size` is now always ``int``
* Improved the unmounter with generic loopback support

Removed and modified features:

Expand Down
2 changes: 2 additions & 0 deletions docs/python.rst
Original file line number Diff line number Diff line change
Expand Up @@ -253,12 +253,14 @@ The best example of the use of the Python interface is the :command:`imount` com
.. automethod:: find_mounts
.. automethod:: find_base_images
.. automethod:: find_volume_groups
.. automethod:: find_loopbacks
.. automethod:: find_clean_dirs

.. automethod:: unmount_bindmounts
.. automethod:: unmount_mounts
.. automethod:: unmount_base_images
.. automethod:: unmount_volume_groups
.. automethod:: unmount_loopbacks
.. automethod:: clean_dirs

.. attribute:: re_pattern
Expand Down
2 changes: 1 addition & 1 deletion imagemounter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from __future__ import unicode_literals

__ALL__ = ['Volume', 'VolumeSystem', 'Disk', 'ImageParser', 'Unmounter']
__version__ = '3.0.0a2'
__version__ = '3.0.0'

BLOCK_SIZE = 512
DISK_MOUNTERS = ('xmount', 'affuse', 'ewfmount', 'vmware-mount', 'avfs', 'auto', 'dummy')
Expand Down

0 comments on commit 9245f8b

Please sign in to comment.