gitlab-glfm-markdown 0.0.25-x86_64-linux-gnu → 0.0.26-x86_64-linux-gnu

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a01abb4f4907fc526948e2bb4e423c275bcea40edebda3da4f3d6ad4c93c2992
4
- data.tar.gz: 169a036fd4f7b4986b89c0963ba6aa5f222a1c6cc4b14f78ea3b07455bf5c964
3
+ metadata.gz: a1511f161a18e61183eafbf86163f9f170e580cb2d2c75569c00ca8a146e6865
4
+ data.tar.gz: 64a7d6f5aa4ae81c5718dd86baaa28ac8992b14e85f1eb0a23206fb948f255c4
5
5
  SHA512:
6
- metadata.gz: 3879da12bccd1213665dc6b48ad591f0f5dd98a1c407299c7d3936d3058e611e4c1a2ae4c00bcfcec0b9314581a0b19115cec46377a732e12f264dea89a980e1
7
- data.tar.gz: 5b96bfe807b9ce712c8897006628a779d6ba5b351bfcda4a5511cbef1af7c8c7ac33156d886e2c0d8327a25b08df538884a26f282692ce9dec97a4f324c36f85
6
+ metadata.gz: 6cf1f001055afd987162de07da08574df6e18043f2e47ff2f4e1c0b6201a12d9828667d314ae0f8531a37d82dd4a4dd564478930936badcd3f479d5425c974ec
7
+ data.tar.gz: aa7a6703e2256a13724406f075f173a8467171208f924cadf0eec55da0c55a9ea813c99e4b2f7e1ec74266200a5d7b335a183f3aee4fceaa0d717f2fac931a1a
data/Cargo.lock CHANGED
@@ -226,9 +226,9 @@ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
226
226
 
227
227
  [[package]]
228
228
  name = "comrak"
229
- version = "0.34.0"
229
+ version = "0.35.0"
230
230
  source = "registry+https://github.com/rust-lang/crates.io-index"
231
- checksum = "1664eb8abab93a9c09d1e85df10b4de6af0b4c738f267750b211a77a771447fe"
231
+ checksum = "52602e10393cfaaf8accaf707f2da743dc22cbe700a343ff8dbc9e5e04bc6b74"
232
232
  dependencies = [
233
233
  "caseless",
234
234
  "emojis",
@@ -319,7 +319,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
319
319
 
320
320
  [[package]]
321
321
  name = "glfm_markdown"
322
- version = "0.0.25"
322
+ version = "0.0.26"
323
323
  dependencies = [
324
324
  "clap",
325
325
  "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.34.0`_.
8
+ _Currently using `comrak 0.35.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.25"
3
+ version = "0.0.26"
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.34.0", default-features = false, features = ["shortcodes"] }
18
+ comrak = { version = "0.35.0", 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
 
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.25'
4
+ VERSION = '0.0.26'
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.25
4
+ version: 0.0.26
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-01-22 00:00:00.000000000 Z
11
+ date: 2025-01-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rb_sys