Skip to content

Commit f34feb8

Browse files
committed
version: 1.1.1
1 parent f96082a commit f34feb8

File tree

6 files changed

+20
-8
lines changed

6 files changed

+20
-8
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## 1.1.1 (2024-10-07)
2+
3+
* 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))
4+
* Fixed nested list tightness sometimes being incorrect. ([#5](https://github.com/lexi-lambda/racket-commonmark/issues/5), [e0b9dec](https://github.com/lexi-lambda/racket-commonmark/commit/e0b9dec454e9ebca23c4578f7e58a3774546d4a9))
5+
6+
## 1.1 (2021-11-22)
7+
8+
* Added support for footnotes as an optional extension. ([d40156b](https://github.com/lexi-lambda/racket-commonmark/commit/d40156bce42088aea1a742d6cce4c8697318db70))
9+
10+
## 1.0 (2021-11-20)
11+
12+
* Initial release.

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")
3+
(define version "1.1.1")
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")
3+
(define version "1.1.1")
44

55
(define collection 'multi)
66

77
(define deps
88
'("base"))
99
(define build-deps
10-
'("commonmark-lib"
10+
'(["commonmark-lib" #:version "1.1.1"]
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")
3+
(define version "1.1.1")
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")
3+
(define version "1.1.1")
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")
3+
(define version "1.1.1")
44

55
(define collection 'multi)
66

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

1313
(define implies

0 commit comments

Comments
 (0)