Skip to content

Commit

Permalink
update mete-data
Browse files Browse the repository at this point in the history
  • Loading branch information
mozman committed Mar 23, 2022
1 parent cd77506 commit 775081f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
9 changes: 9 additions & 0 deletions NEWS.rst
Expand Up @@ -2,6 +2,15 @@
NEWS
====

Version 1.4.2 - 2022-03-23
--------------------------

* This package is INACTIVE!
* no new features will be added
* there will be no change of behavior
* only bugfixes will be merged
* Merged some contributions and bugfixes.

Version 1.4.1 - 2021-01-15
--------------------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
@@ -1,7 +1,7 @@
svgwrite
========

This package is in maintenance mode, no new features will be added, there will
This package is inactive! No new features will be added, there will
be no change of behavior, just bugfixes will be merged.

Abstract
Expand Down
6 changes: 4 additions & 2 deletions setup.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
# License: MIT License
# Copyright (C) 2010-2020 Manfred Moitzi
# Copyright (C) 2010-2022 Manfred Moitzi
from pathlib import Path
from setuptools import setup

Expand All @@ -9,6 +9,7 @@

ROOT = Path(__file__).resolve().parent


def get_version():
v = {}
# do not import svgwrite, because required packages may not installed yet
Expand All @@ -34,14 +35,15 @@ def get_version():
platforms="OS Independent",
license="MIT License",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Development Status :: 7 - Inactive",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Intended Audience :: Developers",
Expand Down
4 changes: 2 additions & 2 deletions svgwrite/version.py
Expand Up @@ -27,5 +27,5 @@
# 1. bug fix release beta0: VERSION = "0.9.1b0"; version = (0, 9, 1, 'b0')
# 2. bug fix release: VERSION = "0.9.2"; version = (0, 9, 2, 'release')

version = (1, 4, 1, 'release')
__version__ = "1.4.1"
version = (1, 4, 2, 'release')
__version__ = "1.4.2"

0 comments on commit 775081f

Please sign in to comment.