Skip to content

Commit

Permalink
release 1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dmach committed Jan 7, 2025
1 parent 93a851b commit 429d1c7
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
32 changes: 32 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
- 1.11.0
- Command-line:
- Add hint how to deal with scmsync-nobranch scenarios
- Speed loading commands up
- Fix 'log' command to work correctly with --meta --patch options
- Document that 'status' command prints unmodified files in verbose output
- Hide progressbar.Bar widget after ProgressBar has completed
- Avoid printing urlquoted file names in 'getbinaries' command
- Configuration:
- Mute oscrc permissions warning when there's no password set
- Connection:
- Save session cookie even if a request fails
- Library:
- Fix local building in git projects
- Extend xml.etree.ElementTree.ParseError output with a snippet of broken XML
- Sync ScmsyncObsinfo with obs-scm-bridge
- Move running obs_scm_bridge into run_obs_scm_bridge() function
- Convert remaining makeurl() query parameters from deprecated string to dict
- Add more operators to XPathQuery
- Make 'title' and 'description' fields optional in the Package model
- Fix progress bar code to support progressbar2
- Support LoongArch64 architecture
- Mute pylint errors in show_package_disabled_repos() that are false-positives
- Fix another bytes/unicode issues in core.link_pac() by replacing ElementTree code with XML models
- Fix handling 'lock' field in 'Package' model
- Fix handling SimpleFlag model
- Extend RequestActionSource with 'repository' attribute
- Load most of the modules in commandline.py on-demand
- Fix traceback in 'linkpac --disable-build'
- Spec:
- Add conflict with older versions of obs-service-source_validator to ensure that version compatible with .osc store 2.0 is installed

- 1.10.1
- Command-line:
- Fix crash in 'build' command due to undefined 'build_root' variable
Expand Down
2 changes: 1 addition & 1 deletion contrib/osc.spec
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
%endif

Name: osc
Version: 1.10.1
Version: 1.11.0
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.10.1')
__version__ = git_version.get_version('1.11.0')


# vim: sw=4 et

0 comments on commit 429d1c7

Please sign in to comment.