Skip to content

Commit

Permalink
0.0.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
s-m-e committed Jul 10, 2020
2 parents 0fb0df4 + b6974ee commit 51d5664
Show file tree
Hide file tree
Showing 10 changed files with 785 additions and 61 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ system/
build/
dist/
*.egg-info
notes.md
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changes

## 0.0.4 (2020-07-10)

- Added Python 3.8 support
- Dropped Python 3.4 support
- FIX: Critical bug in error handling, see #26 and #27.
- Improved library structure.

## 0.0.3 (2019-05-18)

- Removed Python-2-compatibility code
Expand Down
9 changes: 8 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# makefile: GNU makefile for project management
#
# Copyright (C) 2008-2019 refuse contributors
# Copyright (C) 2008-2020 refuse contributors
#
# <LICENSE_BLOCK>
# The contents of this file are subject to the Internet Systems Consortium (ISC)
Expand Down Expand Up @@ -58,3 +58,10 @@ install_link:

# test:
# pytest

# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# ANALYSIS
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

dump_header:
python -m refuse._inventory
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
setup.py: Used for package distribution
Copyright (C) 2008-2019 refuse contributors
Copyright (C) 2008-2020 refuse contributors
<LICENSE_BLOCK>
The contents of this file are subject to the Internet Systems Consortium (ISC)
Expand Down Expand Up @@ -38,12 +38,14 @@
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

# BUMP VERSION HERE!
_version_ = '0.0.3'
_version_ = '0.0.4'

# List all versions of Python which are supported
python_minor_min = 5
python_minor_max = 8
confirmed_python_versions = [
('Programming Language :: Python :: %s' % x)
for x in '3.4 3.5 3.6 3.7'.split(' ')
'Programming Language :: Python :: 3.{MINOR:d}'.format(MINOR = minor)
for minor in range(python_minor_min, python_minor_max + 1)
]

# Fetch readme file
Expand All @@ -54,7 +56,7 @@
development_deps_list = [
'coverage',
'pytest',
'python-language-server',
'python-language-server[all]',
'setuptools',
'Sphinx',
'sphinx_rtd_theme',
Expand All @@ -78,6 +80,7 @@
license = 'ISC',
keywords = ['fuse', 'libfuse'],
include_package_data = True,
python_requires = '>=3.{MINOR:d}'.format(MINOR = python_minor_min),
install_requires = [],
extras_require = {'dev': development_deps_list},
zip_safe = False,
Expand Down
2 changes: 1 addition & 1 deletion src/refuse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
src/refuse/__init__.py: Package root
Copyright (C) 2008-2019 refuse contributors
Copyright (C) 2008-2020 refuse contributors
<LICENSE_BLOCK>
The contents of this file are subject to the Internet Systems Consortium (ISC)
Expand Down
Loading

0 comments on commit 51d5664

Please sign in to comment.