Skip to content

Commit

Permalink
[DOC] Prism is a new default gem
Browse files Browse the repository at this point in the history
  • Loading branch information
k0kubun committed Oct 19, 2023
1 parent 6d42f4d commit c221af2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 4 additions & 1 deletion NEWS.md
Expand Up @@ -102,6 +102,10 @@ Note: We're only listing outstanding class updates.
* Random::Formatter#alphanumeric is extended to accept optional `chars`
keyword argument. [[Feature #18183]]

The following default gem is added.

* prism 0.15.1

The following default gems are updated.

* RubyGems 3.5.0.dev
Expand All @@ -115,7 +119,6 @@ The following default gems are updated.
* nkf 0.1.3
* openssl 3.2.0
* optparse 0.4.0.pre.1
* prism 0.15.1
* psych 5.1.1.1
* reline 0.3.9
* stringio 3.0.9
Expand Down
10 changes: 6 additions & 4 deletions tool/update-NEWS-gemlist.rb
Expand Up @@ -28,12 +28,14 @@
next unless v
[g, v] unless last[g] == v
end
if type == 'bundled'
changed, added = changed.partition {|g, _| last[g]}
end
changed, added = changed.partition {|g, _| last[g]}
update[changed, type] or next
if added and !added.empty?
update[added, 'default', 'now bundled'] or next
if type == 'bundled'
update[added, 'default', 'now bundled'] or next
else
update[added, 'default', 'added'] or next
end
end
File.write("NEWS.md", news)
end

0 comments on commit c221af2

Please sign in to comment.