Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-unicode-display_width for openSUSE:Factory checked in at 2021-10-11 15:31:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-unicode-display_width (Old) and /work/SRC/openSUSE:Factory/.rubygem-unicode-display_width.new.2443 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-unicode-display_width" Mon Oct 11 15:31:36 2021 rev:5 rq:924373 version:2.1.0 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-unicode-display_width/rubygem-unicode-display_width.changes 2021-01-21 21:56:09.089827204 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-unicode-display_width.new.2443/rubygem-unicode-display_width.changes 2021-10-11 15:32:34.482937069 +0200 @@ -1,0 +2,7 @@ +Sat Oct 9 09:22:51 UTC 2021 - Manuel Schnitzer <mschnit...@suse.com> + +- updated to version 2.1.0 + + * Unicode 14.0 + +------------------------------------------------------------------- Old: ---- unicode-display_width-2.0.0.gem New: ---- unicode-display_width-2.1.0.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-unicode-display_width.spec ++++++ --- /var/tmp/diff_new_pack.sSlFNN/_old 2021-10-11 15:32:34.866937685 +0200 +++ /var/tmp/diff_new_pack.sSlFNN/_new 2021-10-11 15:32:34.866937685 +0200 @@ -24,7 +24,7 @@ # Name: rubygem-unicode-display_width -Version: 2.0.0 +Version: 2.1.0 Release: 0 %define mod_name unicode-display_width %define mod_full_name %{mod_name}-%{version} @@ -40,7 +40,7 @@ Group: Development/Languages/Ruby %description -[Unicode 13.0.0] Determines the monospace display width of a string using +[Unicode 14.0.0] Determines the monospace display width of a string using EastAsianWidth.txt, Unicode general category, and other data. %prep ++++++ unicode-display_width-2.0.0.gem -> unicode-display_width-2.1.0.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md --- old/CHANGELOG.md 2020-12-30 10:10:25.000000000 +0100 +++ new/CHANGELOG.md 2021-09-15 16:05:33.000000000 +0200 @@ -1,5 +1,9 @@ # CHANGELOG +## 2.1.0 + +- Unicode 14.0 + ## 2.0.0 - Release 2.0.0 @@ -25,6 +29,10 @@ - Freeze string literals - The Unicode::DisplayWidth now is class, instead of a module, this enables the new config-object API +## 1.8.0 + +- Unicode 14.0 (last release of 1.x) + ## 1.7.0 - Unicode 13 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/MIT-LICENSE.txt new/MIT-LICENSE.txt --- old/MIT-LICENSE.txt 2020-12-30 10:10:25.000000000 +0100 +++ new/MIT-LICENSE.txt 2021-09-15 16:05:33.000000000 +0200 @@ -1,6 +1,6 @@ The MIT LICENSE -Copyright (c) 2011, 2015-2020 Jan Lelis +Copyright (c) 2011, 2015-2021 Jan Lelis Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/README.md new/README.md --- old/README.md 2020-12-30 10:10:25.000000000 +0100 +++ new/README.md 2021-09-15 16:05:33.000000000 +0200 @@ -2,11 +2,11 @@ Determines the monospace display width of a string in Ruby. Implementation based on [EastAsianWidth.txt](https://www.unicode.org/Public/UNIDATA/EastAsianWidth.txt) and other data, 100% in Ruby. It does not rely on the OS vendor (like [wcwidth()](https://github.com/janlelis/wcswidth-ruby)) to provide an up-to-date method for measuring string width. -Unicode version: **13.0.0** (March 2020) +Unicode version: **14.0.0** (September 2021) -Supported Rubies: **3.0**, **2.7**, **2.6**, **2.5** +Supported Rubies: **3.0**, **2.7** -Old Rubies which might still work: **2.4**, **2.3**, **2.2**, **2.1**, **2.0**, **1.9** +Old Rubies which might still work: **2.6**, **2.5**, **2.4**, **2.3**, **2.2**, **2.1**, **2.0**, **1.9** ## Version 2.0 ??? Breaking Changes @@ -153,7 +153,7 @@ ## Copyright & Info -- Copyright (c) 2011, 2015-2020 Jan Lelis, https://janlelis.com, released under the MIT +- Copyright (c) 2011, 2015-2021 Jan Lelis, https://janlelis.com, released under the MIT license - Early versions based on runpaint's unicode-data interface: Copyright (c) 2009 Run Paint Run Run - Unicode data: https://www.unicode.org/copyright.html#Exhibit1 Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ Binary files old/data/display_width.marshal.gz and new/data/display_width.marshal.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/unicode/display_width/constants.rb new/lib/unicode/display_width/constants.rb --- old/lib/unicode/display_width/constants.rb 2020-12-30 10:10:25.000000000 +0100 +++ new/lib/unicode/display_width/constants.rb 2021-09-15 16:05:33.000000000 +0200 @@ -2,8 +2,8 @@ module Unicode class DisplayWidth - VERSION = "2.0.0" - UNICODE_VERSION = "13.0.0" + VERSION = "2.1.0" + UNICODE_VERSION = "14.0.0" DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + "/../../../data/") INDEX_FILENAME = DATA_DIRECTORY + "/display_width.marshal.gz" end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2020-12-30 10:10:25.000000000 +0100 +++ new/metadata 2021-09-15 16:05:33.000000000 +0200 @@ -1,14 +1,14 @@ --- !ruby/object:Gem::Specification name: unicode-display_width version: !ruby/object:Gem::Version - version: 2.0.0 + version: 2.1.0 platform: ruby authors: - Jan Lelis autorequire: bindir: bin cert_chain: [] -date: 2020-12-30 00:00:00.000000000 Z +date: 2021-09-15 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: rspec @@ -38,7 +38,7 @@ - - "~>" - !ruby/object:Gem::Version version: '13.0' -description: "[Unicode 13.0.0] Determines the monospace display width of a string +description: "[Unicode 14.0.0] Determines the monospace display width of a string using EastAsianWidth.txt, Unicode general category, and other data." email: - hi@ruby.consulting