Skip to content

Commit b623023

Browse files
committed
Automatic commit of package [python-dockerfile-parse] release [2.0.0-1].
Created by command: /usr/bin/tito tag --use-version=2.0.0 --changelog=new upstream release: 2.0.0
1 parent 0ab6287 commit b623023

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

dockerfile_parse/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@
88

99
#
1010
# This file is generated from template: rel-eng/version_init.template
11+
# DO NOT MODIFY THIS FILE
12+
# If changes are necessary, edit ./rel-eng/version_init.template
1113
#
1214

15+
from __future__ import absolute_import
1316
from .parser import DockerfileParser # noqa: F401
1417

15-
__version__ = "1.2.0"
18+
__version__ = "2.0.0"

python-dockerfile-parse.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
%global modname %(n=%{srcname}; echo ${n//-/_})
55

66
Name: python-%{srcname}
7-
Version: 1.2.0
7+
Version: 2.0.0
88
Release: 1%{?dist}
99

1010
Summary: Python library for Dockerfile manipulation
@@ -57,6 +57,9 @@ py.test-%{python3_version} -v tests
5757

5858

5959
%changelog
60+
* Tue Dec 13 2022 mkosiarc <mkosiarc@redhat.com> 2.0.0-1
61+
- new upstream release: 2.0.0
62+
6063
* Wed Jun 09 2021 Robert Cerven <rcerven@redhat.com> 1.2.0-1
6164
- new upstream release: 1.2.0
6265

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.0-1 ./
1+
2.0.0-1 ./

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def _get_requirements(path):
3131

3232
setup(
3333
name='dockerfile-parse',
34-
version='1.2.0',
34+
version='2.0.0',
3535
description='Python library for Dockerfile manipulation',
3636
long_description=long_description,
3737
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)