Skip to content

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
techalchemy committed Sep 23, 2018
1 parent 23b2a61 commit 993e0ea
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.rst
@@ -1,3 +1,20 @@
0.1.1 (2018-09-23)
==================

Features
--------

- - Added ``VirtualEnv.resolve_dist(dist, working_set)`` to find the resolution set for a distribution on the specified working set.
- Added ``VirtualEnv.initial_working_set`` which finds the working set based on the prefix according to ``sysconfig``.
- Added the ability to pass ``extra_dists=[]`` to ``VirtualEnv.activated()`` in order to add dists to the activation scope for import in code. `#2 <https://github.com/sarugaku/mork/issues/2>`_


Bug Fixes
---------

- Fixed a bug which caused ``VirtualEnv.sys_path`` to fail to populate correctly. `#1 <https://github.com/sarugaku/mork/issues/1>`_


0.1.0 (2018-09-21)
==================

Expand Down
1 change: 0 additions & 1 deletion news/1.bugfix

This file was deleted.

3 changes: 0 additions & 3 deletions news/2.feature

This file was deleted.

2 changes: 1 addition & 1 deletion src/mork/__init__.py
Expand Up @@ -3,6 +3,6 @@
from __future__ import absolute_import, unicode_literals
from .virtualenv import VirtualEnv

__version__ = '0.1.1.dev0'
__version__ = '0.1.1'

__all__ = ["VirtualEnv"]

0 comments on commit 993e0ea

Please sign in to comment.