Skip to content

Commit 4e9fe8c

Browse files
committed
New version - 1.1.1
1 parent d02217a commit 4e9fe8c

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ po-push: potfile
116116
bumpver: po-push
117117
read -p "Please see the above message. Verify and push localization commit. Press anything to continue." -n 1 -r
118118

119-
@NEWSUBVER=$$((`echo $(VERSION) |cut -d . -f 2` + 1)) ; \
120-
NEWVERSION=`echo $(VERSION).$$NEWSUBVER |cut -d . -f 1,3` ; \
119+
@NEWSUBVER=$$((`echo $(VERSION) |cut -d . -f 3` + 1)) ; \
120+
NEWVERSION=`echo $(VERSION).$$NEWSUBVER |cut -d . -f 1,2,4` ; \
121121
DATELINE="* `LANG=c date "+%a %b %d %Y"` `git config user.name` <`git config user.email`> - $$NEWVERSION-1" ; \
122122
cl=`grep -n %changelog $(SPECNAME).spec |cut -d : -f 1` ; \
123123
tail --lines=+$$(($$cl + 1)) $(SPECNAME).spec > speclog ; \

python-simpleline.spec

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Name: python-%{srcname}
44
Summary: A Python library for creating text UI
55
Url: https://github.com/rhinstaller/python-%{srcname}
6-
Version: 1.1
6+
Version: 1.1.1
77
Release: 1%{?dist}
88
# This tarball was created from upstream git:
99
# git clone https://github.com/rhinstaller/python-simpleline
@@ -60,6 +60,17 @@ make test
6060
%{python3_sitelib}/*
6161

6262
%changelog
63+
* Tue Aug 11 2020 Jiri Konecny <[email protected]> - 1.1.1-1
64+
- Use relative imports in tests (jkonecny)
65+
- Solve pylint errors (jkonecny)
66+
- Remove pot file (jkonecny)
67+
- Switch translations to rhel-8 Weblate branch (jkonecny)
68+
- Add potfile to the .gitignore (jkonecny)
69+
- Pause releasing when calling bumpver (jkonecny)
70+
- Remove Zanata from the Simpleline (jkonecny)
71+
- Switch po-push from Zanata to Weblate (jkonecny)
72+
- Download translations from Weblate (jkonecny)
73+
6374
* Tue Apr 10 2018 Jiri Konecny <[email protected]> - 1.1-1
6475
- Add global configuration initialize test (jkonecny)
6576
- Use default password function from GlobalConfiguration (jkonecny)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from distutils.core import setup
44

5-
setup(name='simpleline', version='1.1',
5+
setup(name='simpleline', version='1.1.1',
66
description='Python text UI framework',
77
author='Jiri Konecny', author_email='[email protected]',
88
url='http://git.fedoraproject.org/git/?p=python-simpleline.git',

0 commit comments

Comments
 (0)