Skip to content

Commit 17d7557

Browse files
Updating swift-cmark-gfm and fixed warnings
1 parent 5cba9ed commit 17d7557

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Package.resolved

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"package": "cmark_gfm",
66
"repositoryURL": "https://github.com/hebertialmeida/swift-cmark-gfm",
77
"state": {
8-
"branch": "master",
9-
"revision": "5f0607860c8b4aae17e7f4a82d41504f06a5cbef",
10-
"version": null
8+
"branch": null,
9+
"revision": "9b3ec79cb00848f7a69bc13035f117b2a86d7bd8",
10+
"version": "1.1.0"
1111
}
1212
}
1313
]

Package.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.2
1+
// swift-tools-version:5.3
22

33
import PackageDescription
44

@@ -9,7 +9,7 @@ let package = Package(
99
.library(name: "MarkdownSyntax", targets: ["MarkdownSyntax"]),
1010
],
1111
dependencies: [
12-
.package(name: "cmark_gfm", url: "https://github.com/hebertialmeida/swift-cmark-gfm", .upToNextMajor(from: "1.0.0"))
12+
.package(name: "cmark_gfm", url: "https://github.com/hebertialmeida/swift-cmark-gfm", .upToNextMajor(from: "1.1.0"))
1313
],
1414
targets: [
1515
.target(name: "MarkdownSyntax", dependencies: ["cmark_gfm"]),

Sources/MarkdownSyntax/CMark/CMExtension.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public struct CMExtensionOption: OptionSet {
4747
}
4848

4949
/// No extensions
50-
public static let none = CMExtensionOption(rawValue: 0)
50+
public static let none = CMExtensionOption([])
5151

5252
/// All extensions
5353
public static let all: CMExtensionOption = [.tables, .autolinks, .strikethrough, .tagfilters, .tasklist]

0 commit comments

Comments
 (0)