From a953dcf8b85fbadac9c0f77266b8e5ad7089aab5 Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Fri, 17 Mar 2023 16:05:07 +0100 Subject: [PATCH] release 1.0.1 --- NEWS | 8 +++++++- osc/__init__.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 7d9a8848..cc531120 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,10 @@ -- Update to 1.0.0 +- 1.0.1 + - Configuration: + - Fix a cut&paste error in setting 'disable_hdrmd5_check' config option + - Connection: + - Set Content-Type of POST requests without data to 'application/x-www-form-urlencoded' + +- 1.0.0 - Command-line: - Use '.' as a wildcard that resolves to a project or a package name from the current working copy, for example 'osc rdiff ./. -c ' - Add 'create-pbuild-config' (cpc) command diff --git a/osc/__init__.py b/osc/__init__.py index 34401498..e16bb8c9 100644 --- a/osc/__init__.py +++ b/osc/__init__.py @@ -13,7 +13,7 @@ __all__ = [ from .util import git_version -__version__ = git_version.get_version('1.0.0') +__version__ = git_version.get_version('1.0.1') # vim: sw=4 et