Skip to content

Commit a0bd57a

Browse files
committed
Update licensing and prepare for release
1 parent cc23005 commit a0bd57a

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

CHANGES.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,15 @@
127127
fairly extensively inside hypothesis which do exhibit this pattern of
128128
strategy.
129129

130-
0.4.0 - TBD
130+
0.4.0 - 21/01/2015
131131
FLAGSHIP FEATURE: Hypothesis now persists examples for later use. It stores
132132
data in a local SQLite database and will reuse it for all tests of the same
133133
type.
134134

135+
LICENSING CHANGE: Hypothesis is now released under the Mozila Public License
136+
2.0. This applies to all versions from 0.4.0 onwards until further notice.
137+
The previous license remains applicable to all code prior to 0.4.0.
138+
135139
Enhancements:
136140

137141
* Printing of failing examples. I was finding that the pytest runner was not

LICENSE.txt

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
Copyright (c) 2013, David R. MacIver
2-
All rights reserved.
32

4-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5-
6-
& Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7-
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8-
9-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3+
All code in this repository except where explicitly noted otherwise is released
4+
under the Mozilla Public License v 2.0. You can obtain a copy at http://mozilla.org/MPL/2.0/.

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ def run_tests(self):
1717

1818
setup(
1919
name='hypothesis',
20-
version='0.3.2',
20+
version='0.4.0',
2121
author='David R. MacIver',
2222
author_email='david@drmaciver.com',
2323
packages=find_packages("src"),
2424
package_dir={"": "src"},
2525
url='https://github.com/DRMacIver/hypothesis',
26-
license='BSD',
26+
license='MPL v2',
2727
description='A library for property based testing',
2828
classifiers=[
2929
"Development Status :: 4 - Beta",
3030
"Intended Audience :: Developers",
31-
"License :: OSI Approved :: BSD License",
31+
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)"
3232
"Operating System :: Unix",
3333
"Operating System :: POSIX",
3434
"Operating System :: Microsoft :: Windows",

0 commit comments

Comments
 (0)