Skip to content

Commit

Permalink
release 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dmach committed Aug 28, 2023
1 parent 5f3dc21 commit a77f3d4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
- 1.3.1
- Command-line:
- Fix string + int concatenation errors in 'build' command by using f-strings instead
- Fix '--all' option in 'rebuild' command
- Fix 'build' command when '--alternative-project' option is specified and the git branch cannot be mapped to a project
- Stop suggesting that the working directory is git/mercurial/svn/cvs
- Be helpful in deprecating commands
- Configuration:
- Add more config options among integer options
- Library:
- Fix GitStore to error out properly if there is no 'origin' remote in the git repo
- print_buildlog: Remove control characters from build log before printing (CVE-2012-1095)

- 1.3.0
- Command-line:
- Add experimental support of Git SCM to the 'build' command
Expand Down
2 changes: 1 addition & 1 deletion contrib/osc.spec
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
%endif

Name: osc
Version: 1.3.0
Version: 1.3.1
Release: 0
Summary: Command-line client for the Open Build Service
License: GPL-2.0-or-later
Expand Down
2 changes: 1 addition & 1 deletion osc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


from .util import git_version
__version__ = git_version.get_version('1.3.0')
__version__ = git_version.get_version('1.3.1')


# vim: sw=4 et

0 comments on commit a77f3d4

Please sign in to comment.