From 023a23156baeb2c22716d14461ad23b4d34efa62 Mon Sep 17 00:00:00 2001 From: Jimmy Bourassa Date: Thu, 19 Sep 2024 10:57:18 -0400 Subject: [PATCH] Release v0.4.0 --- CHANGELOG.md | 2 +- Gemfile.lock | 12 +++++------- lib/yard-rustdoc/version.rb | 2 +- 3 files changed, 7 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6c6ea8..ec94a65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v0.4.0 - Adjust Rustdoc's json parsing for format v26. See https://github.com/rust-lang/rust/pull/111427 for the breaking change. diff --git a/Gemfile.lock b/Gemfile.lock index 36bbfe3..d3fe404 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - yard-rustdoc (0.3.2) + yard-rustdoc (0.4.0) syntax_tree (~> 5.0) yard (~> 0.9) @@ -14,7 +14,7 @@ GEM parallel (1.22.1) parser (3.1.2.1) ast (~> 2.4.1) - prettier_print (1.1.0) + prettier_print (1.2.1) rainbow (3.1.1) rake (13.0.6) regexp_parser (2.6.0) @@ -38,12 +38,10 @@ GEM standard (1.18.0) rubocop (= 1.39.0) rubocop-performance (= 1.15.0) - syntax_tree (5.0.1) - prettier_print (>= 1.1.0) + syntax_tree (5.3.0) + prettier_print (>= 1.2.0) unicode-display_width (2.3.0) - webrick (1.7.0) - yard (0.9.28) - webrick (~> 1.7.0) + yard (0.9.37) PLATFORMS arm64-darwin-21 diff --git a/lib/yard-rustdoc/version.rb b/lib/yard-rustdoc/version.rb index fff5607..5d7605f 100644 --- a/lib/yard-rustdoc/version.rb +++ b/lib/yard-rustdoc/version.rb @@ -2,6 +2,6 @@ module YARD module Rustdoc - VERSION = "0.3.2" + VERSION = "0.4.0" end end