Skip to content

Commit 2c42cae

Browse files
committed
version: 1.2
1 parent f28bafb commit 2c42cae

File tree

6 files changed

+19
-8
lines changed

6 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 1.2 (2024-10-07)
2+
3+
* Updated from CommonMark v0.30 to v0.31.2. ([f28bafb](https://github.com/lexi-lambda/racket-commonmark/commit/f28bafb69a3cdf4ffc9f0f0a77aefadb507421f7))
4+
5+
The behavioral changes are quite minimal. The relevant bullets from [the CommonMark changelog](https://spec.commonmark.org/changelog.txt) are:
6+
7+
> * Add symbols to unicode punctuation (Titus Wormer).
8+
> * Add `search` element to list of known block elements (Titus Wormer).
9+
> * Remove `source` element as HTML block start condition (Lukas Spieß).
10+
> * Remove restrictive limitation on inline comments; now we match the HTML spec (Titus Wormer).
11+
112
## 1.1.1 (2024-10-07)
213

314
* Fixed bug that caused inline links to sometimes fail to parse. ([#4](https://github.com/lexi-lambda/racket-commonmark/issues/4), [f96082a](https://github.com/lexi-lambda/racket-commonmark/commit/f96082a21d5577c57c5c00d916f666567cb41a1c))

commonmark-bench/info.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#lang info
22

3-
(define version "1.1.1")
3+
(define version "1.2")
44

55
(define collection 'multi)
66

commonmark-doc/info.rkt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#lang info
22

3-
(define version "1.1.1")
3+
(define version "1.2")
44

55
(define collection 'multi)
66

77
(define deps
88
'("base"))
99
(define build-deps
10-
'(["commonmark-lib" #:version "1.1.1"]
10+
'(["commonmark-lib" #:version "1.2"]
1111
"racket-doc"
1212
"scribble-lib"
1313
"threading-lib"))

commonmark-lib/info.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#lang info
22

3-
(define version "1.1.1")
3+
(define version "1.2")
44

55
(define collection 'multi)
66

commonmark-test/info.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#lang info
22

3-
(define version "1.1.1")
3+
(define version "1.2")
44

55
(define collection 'multi)
66

commonmark/info.rkt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#lang info
22

3-
(define version "1.1.1")
3+
(define version "1.2")
44

55
(define collection 'multi)
66

77
(define deps
88
'("base"
9-
["commonmark-doc" #:version "1.1.1"]
10-
["commonmark-lib" #:version "1.1.1"]))
9+
["commonmark-doc" #:version "1.2"]
10+
["commonmark-lib" #:version "1.2"]))
1111
(define build-deps '())
1212

1313
(define implies

0 commit comments

Comments
 (0)