Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ruby 3.4 adaptation #658

Merged
merged 2 commits into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions package/yast2-packager.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon Jan 6 10:45:35 UTC 2025 - Martin Vidner <[email protected]>

- Adjust test for ruby-3.4 (bsc#1235099)
- 5.0.6

-------------------------------------------------------------------
Tue Mar 12 13:43:26 UTC 2024 - Ladislav Slezák <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-packager.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


Name: yast2-packager
Version: 5.0.5
Version: 5.0.6
Release: 0
Summary: YaST2 - Package Library
License: GPL-2.0-or-later
Expand Down
5 changes: 3 additions & 2 deletions test/packages_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -361,8 +361,9 @@ def package(properties = {})

expect(Yast::Y2Logger.instance).to receive(:info) do |msg|
expect(msg).to match(
/transaction\sstatus\s(begin|end)|resolvables\s
of\stype\s.*\sset\sby\s.*|:name=>.*:version=>/ix
/transaction\sstatus\s(begin|end)|
resolvables\sof\stype\s.*\sset\sby\s.*|
name[:=].*version[:=]/ix
)
end.exactly(8).times

Expand Down
Loading