summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS7
-rw-r--r--oops/__init__.py2
-rwxr-xr-xsetup.py2
3 files changed, 9 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 4476996..37dfdd5 100644
--- a/NEWS
+++ b/NEWS
@@ -3,6 +3,13 @@ oops NEWS
Changes and improvements to oops, grouped by release.
+0.2.0
+-----
+
+* Add Python 3.9 - 3.14 support. (Enrique Sanchez Cardoso)
+* Add security linters. (Enrique Sanchez Cardoso)
+* Update linters and lpci integration. (Enrique Sanchez Cardoso)
+
0.1.0
-----
diff --git a/oops/__init__.py b/oops/__init__.py
index 65041f4..c9d9a06 100644
--- a/oops/__init__.py
+++ b/oops/__init__.py
@@ -25,7 +25,7 @@
# established at this point, and setup.py will use a version of next-$(revno).
# If the releaselevel is 'final', then the tarball will be major.minor.micro.
# Otherwise it is major.minor.micro~$(revno).
-__version__ = (0, 1, 0, "final", 0)
+__version__ = (0, 2, 0, "final", 0)
__all__ = [
"Config",
diff --git a/setup.py b/setup.py
index 813722c..4a9f274 100755
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,7 @@ with open(os.path.join(os.path.dirname(__file__), "README")) as f:
setup(
name="oops",
- version="0.1.0",
+ version="0.2.0",
description="OOPS report model and default allocation/[de]serialization.",
long_description=description,
long_description_content_type="text/x-rst",