gitlab-glfm-markdown 0.0.25-aarch64-linux-gnu → 0.0.26-aarch64-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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 83be7197afc69ce79b0262a36a1fbf315897cf146d44a8f952c2e7d5c28784bb
4
- data.tar.gz: 5ff783120787854b4b938dadf8ac0e3d12a699b45d6de27ce485bcdeaff52def
3
+ metadata.gz: c83106ef5c44e110aacb87c5ad4766b5b12d5a2d47b12456b20748c3c590ac45
4
+ data.tar.gz: e1367439660cc975afee2467205d5e25cf08ae26694630f096d5854ff5a832ea
5
5
  SHA512:
6
- metadata.gz: 36a67fc6ebb86c9119a5d3147c09a7b3135a78079d05398efd77c93fdf8b8b2fc3bbcaec5defc2e24a168e4f6da09dcbe10b93f8c7ee7c7f6f76d47b20d5ed17
7
- data.tar.gz: a5d9e0e8cfb15d165d390507de2af4b13dc15425a312715c2a4cdeb714663cac8e6ec1aa941b805fb987dca4dd86255821ee673b88d3a299d2cd0973f2114424
6
+ metadata.gz: 2ad3e2f3f479438d8cca13b80aa31e5a3997ce3b8feaeae20b75d33fefba56e2745d91031d1871b542b09e3ac2e02da2e5fc2b41ab305b3f809fa4423eaa7b22
7
+ data.tar.gz: d2fa15ede7aabca67586238cd791803c87b76b668ce35963392796ea4720277b0d6e782960466d62fc826ab20acc7546cf62c0c29190c2d1419093fcfe2bbfd9
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: aarch64-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