gitlab-glfm-markdown 0.0.30-x86_64-linux-gnu → 0.0.32-x86_64-linux-gnu

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "glfm_markdown"
3
- version = "0.0.30"
3
+ version = "0.0.32"
4
4
  edition = "2021"
5
5
  authors = ["digitalmoksha <bwalker@gitlab.com>"]
6
6
  description = "GitLab Flavored Markdown parser and formatter. 100% CommonMark-compatible. Experimental."
@@ -15,7 +15,7 @@ required-features = ["cli"]
15
15
 
16
16
  [dependencies]
17
17
  clap = { version = "=4.4.18", optional = true, features = ["derive", "string"] }
18
- comrak = { version = "0.39.0", default-features = false, features = ["shortcodes"] }
18
+ comrak = { version = "0.39.1", default-features = false, features = ["shortcodes"] }
19
19
  magnus = "0.6.2"
20
20
  rb-sys = { version = "0.9.86", default-features = false, features = ["stable-api-compiled-fallback"] }
21
21
  regex = "1.11.1"
@@ -5,4 +5,6 @@ require 'rb_sys/mkmf'
5
5
 
6
6
  create_rust_makefile('glfm_markdown/glfm_markdown') do |r|
7
7
  r.auto_install_rust_toolchain = false
8
+ # Ensure all Rust dependencies are pinned when building
9
+ r.extra_cargo_args = ["--locked"]
8
10
  end
Binary file
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GLFMMarkdown
4
- VERSION = '0.0.30'
4
+ VERSION = '0.0.32'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlab-glfm-markdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.30
4
+ version: 0.0.32
5
5
  platform: x86_64-linux-gnu
6
6
  authors:
7
7
  - Brett Walker
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-05-06 00:00:00.000000000 Z
11
+ date: 2025-07-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rb_sys
@@ -62,6 +62,7 @@ files:
62
62
  - Cargo.lock
63
63
  - LICENSE
64
64
  - README.md
65
+ - ext/glfm_markdown/Cargo.lock
65
66
  - ext/glfm_markdown/Cargo.toml
66
67
  - ext/glfm_markdown/extconf.rb
67
68
  - ext/glfm_markdown/src/glfm.rs