gitlab-glfm-markdown 0.0.14 → 0.0.16

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 23e3388235b705865da2a7599a7f25bbe0cc980a261e9e5f297bdd6e928d2194
4
- data.tar.gz: 0abcc4a40cf2ab65b3cc7b35969874a84612df3abef5e3396dc7c0e1807085f2
3
+ metadata.gz: 760e9c92889c413ea4b44461f2c2e672db9961508c7fec79e72c01b7ca1fde80
4
+ data.tar.gz: 696986a7813c5a74f1b01c2e56a5945ede873a6a7886914c330618fe84d5dc82
5
5
  SHA512:
6
- metadata.gz: 922b77d1a8c14d5bd649afebece545d76336c10794dbd55d755e8f528d07f70cf52db5ee59300251257ed3b84111ad94830ef7a87236bc1e672a9b6e2ab75982
7
- data.tar.gz: 2f86f34ac36ba8c1c1d73cfc2d6a4a119bb12560db551ad97d2501ea3f7d50c711e2dae45a04d40b4e2350b7ce738718d9af7b477968a51986ad4be1c1e5e6a3
6
+ metadata.gz: 3d34dc4626339dcd36b9d6525ceac65b77238337a2c16e5cefefca73cbcd6fa164328b69a0d5e8ba250d4bef1dd5c7f02a2c6259f48ce2a6feebdd53478864c6
7
+ data.tar.gz: 7dc951355f2c554dfd6c2e066657b1e8ae3aca4556e40ffd76259f57453d47e6db2e67c828a31ef49a390fa64b192813f5895f814ef51f413294ff3be12cd2ab
data/Cargo.lock CHANGED
@@ -216,9 +216,9 @@ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
216
216
 
217
217
  [[package]]
218
218
  name = "comrak"
219
- version = "0.22.0"
219
+ version = "0.23.0"
220
220
  source = "registry+https://github.com/rust-lang/crates.io-index"
221
- checksum = "d0436149c9f6a1935b13306206c739b1ba84fa81f551b5eb87fc2ca7a13700af"
221
+ checksum = "ab5681b26a36dc46800a908f7d932672a4e82f74759419dd4018bf40658457d5"
222
222
  dependencies = [
223
223
  "derive_builder",
224
224
  "entities",
@@ -361,7 +361,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
361
361
 
362
362
  [[package]]
363
363
  name = "glfm_markdown"
364
- version = "0.0.14"
364
+ version = "0.0.16"
365
365
  dependencies = [
366
366
  "clap",
367
367
  "comrak",
data/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Implements GLFM (as used by GitLab) using the Rust-based markdown parser [comrak](https://github.com/kivikakk/comrak)
7
7
  and providing a Ruby interface.\
8
- _Currently using `comrak 0.22.0`_.
8
+ _Currently using `comrak 0.23.0`_.
9
9
 
10
10
  This project is still in constant flux, so interfaces and functionality can change at any time.
11
11
 
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "glfm_markdown"
3
- version = "0.0.14"
3
+ version = "0.0.16"
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.0", optional = true, features = ["derive", "string"] }
18
- comrak = { version = "0.22.0", default-features = false }
18
+ comrak = { version = "0.23.0", default-features = false }
19
19
  magnus = "0.6.2"
20
20
  rb-sys = { version = "0.9.86", default-features = false, features = ["stable-api-compiled-fallback"] }
21
21
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GLFMMarkdown
4
- VERSION = '0.0.14'
4
+ VERSION = '0.0.16'
5
5
  end
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlab-glfm-markdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.14
4
+ version: 0.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Walker
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-04-04 00:00:00.000000000 Z
11
+ date: 2024-05-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rb_sys
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.86
19
+ version: 0.9.94
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 0.9.86
26
+ version: 0.9.94
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: pry-byebug
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -121,7 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
121
121
  - !ruby/object:Gem::Version
122
122
  version: '0'
123
123
  requirements: []
124
- rubygems_version: 3.3.26
124
+ rubygems_version: 3.3.27
125
125
  signing_key:
126
126
  specification_version: 4
127
127
  summary: GLFM Markdown