Skip to content

Commit

Permalink
Preparing for 2.0.7 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
omaciel committed May 28, 2015
1 parent f2f62a4 commit 13cc2c5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
Release History
===============

2.0.7 (2015-05-28)
------------------

- Updated the `gen_ipaddr` method to allow the generation of IP
addresses that start with a valid range prefix. (048715d, @mfalesni)

2.0.6 (2015-02-24)
------------------

Expand Down
2 changes: 1 addition & 1 deletion fauxfactory/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ def gen_ipaddr(ip3=False, ipv6=False, prefix=()):
:param bool ip3: Whether to generate a 3 or 4 group IP.
:param bool ipv6: Whether to generate IPv6 or IPv4
:param list prefix: A prefix to be used for IPv4 (like [10, 0, 1]). It
:param list prefix: A prefix to be used for an IP (e.g. [10, 0, 1]). It
must be an iterable with strings or integers. Can be left unspecified or
empty.
:returns: An IP address.
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""A setuptools-based script for installing FauxFactory."""
# setuptools is preferred over distutils. See:
# https://packaging.python.org/en/latest/current.html#packaging-tool-recommendations
# setuptools is preferred over distutils.
from setuptools import find_packages, setup
import codecs
import os
Expand All @@ -20,7 +19,7 @@ def read(*paths):
name='fauxfactory',
description='Generates random data for your tests.',
long_description=LONG_DESCRIPTION,
version='2.0.6',
version='2.0.7',
author='Og Maciel',
author_email='[email protected]',
url='https://github.com/omaciel/fauxfactory',
Expand Down

1 comment on commit 13cc2c5

@Ichimonji10
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎉

Please sign in to comment.