Skip to content

Commit

Permalink
version: 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lexi-lambda committed Oct 7, 2024
1 parent f28bafb commit 2c42cae
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 8 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 1.2 (2024-10-07)

* Updated from CommonMark v0.30 to v0.31.2. ([f28bafb](https://github.com/lexi-lambda/racket-commonmark/commit/f28bafb69a3cdf4ffc9f0f0a77aefadb507421f7))

The behavioral changes are quite minimal. The relevant bullets from [the CommonMark changelog](https://spec.commonmark.org/changelog.txt) are:

> * Add symbols to unicode punctuation (Titus Wormer).
> * Add `search` element to list of known block elements (Titus Wormer).
> * Remove `source` element as HTML block start condition (Lukas Spieß).
> * Remove restrictive limitation on inline comments; now we match the HTML spec (Titus Wormer).
## 1.1.1 (2024-10-07)

* 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))
Expand Down
2 changes: 1 addition & 1 deletion commonmark-bench/info.rkt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#lang info

(define version "1.1.1")
(define version "1.2")

(define collection 'multi)

Expand Down
4 changes: 2 additions & 2 deletions commonmark-doc/info.rkt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#lang info

(define version "1.1.1")
(define version "1.2")

(define collection 'multi)

(define deps
'("base"))
(define build-deps
'(["commonmark-lib" #:version "1.1.1"]
'(["commonmark-lib" #:version "1.2"]
"racket-doc"
"scribble-lib"
"threading-lib"))
2 changes: 1 addition & 1 deletion commonmark-lib/info.rkt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#lang info

(define version "1.1.1")
(define version "1.2")

(define collection 'multi)

Expand Down
2 changes: 1 addition & 1 deletion commonmark-test/info.rkt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#lang info

(define version "1.1.1")
(define version "1.2")

(define collection 'multi)

Expand Down
6 changes: 3 additions & 3 deletions commonmark/info.rkt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#lang info

(define version "1.1.1")
(define version "1.2")

(define collection 'multi)

(define deps
'("base"
["commonmark-doc" #:version "1.1.1"]
["commonmark-lib" #:version "1.1.1"]))
["commonmark-doc" #:version "1.2"]
["commonmark-lib" #:version "1.2"]))
(define build-deps '())

(define implies
Expand Down

0 comments on commit 2c42cae

Please sign in to comment.