Skip to content

Commit

Permalink
New version - 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jkonecny12 committed Aug 11, 2020
1 parent d02217a commit 4e9fe8c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ po-push: potfile
bumpver: po-push
read -p "Please see the above message. Verify and push localization commit. Press anything to continue." -n 1 -r

@NEWSUBVER=$$((`echo $(VERSION) |cut -d . -f 2` + 1)) ; \
NEWVERSION=`echo $(VERSION).$$NEWSUBVER |cut -d . -f 1,3` ; \
@NEWSUBVER=$$((`echo $(VERSION) |cut -d . -f 3` + 1)) ; \
NEWVERSION=`echo $(VERSION).$$NEWSUBVER |cut -d . -f 1,2,4` ; \
DATELINE="* `LANG=c date "+%a %b %d %Y"` `git config user.name` <`git config user.email`> - $$NEWVERSION-1" ; \
cl=`grep -n %changelog $(SPECNAME).spec |cut -d : -f 1` ; \
tail --lines=+$$(($$cl + 1)) $(SPECNAME).spec > speclog ; \
Expand Down
13 changes: 12 additions & 1 deletion python-simpleline.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Name: python-%{srcname}
Summary: A Python library for creating text UI
Url: https://github.com/rhinstaller/python-%{srcname}
Version: 1.1
Version: 1.1.1
Release: 1%{?dist}
# This tarball was created from upstream git:
# git clone https://github.com/rhinstaller/python-simpleline
Expand Down Expand Up @@ -60,6 +60,17 @@ make test
%{python3_sitelib}/*

%changelog
* Tue Aug 11 2020 Jiri Konecny <[email protected]> - 1.1.1-1
- Use relative imports in tests (jkonecny)
- Solve pylint errors (jkonecny)
- Remove pot file (jkonecny)
- Switch translations to rhel-8 Weblate branch (jkonecny)
- Add potfile to the .gitignore (jkonecny)
- Pause releasing when calling bumpver (jkonecny)
- Remove Zanata from the Simpleline (jkonecny)
- Switch po-push from Zanata to Weblate (jkonecny)
- Download translations from Weblate (jkonecny)

* Tue Apr 10 2018 Jiri Konecny <[email protected]> - 1.1-1
- Add global configuration initialize test (jkonecny)
- Use default password function from GlobalConfiguration (jkonecny)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from distutils.core import setup

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

0 comments on commit 4e9fe8c

Please sign in to comment.