Skip to content

Commit

Permalink
Add ability to set task completed (#54)
Browse files Browse the repository at this point in the history
* Add ability to set task completed

* pod update, version bump

* Fix a few line length violations
  • Loading branch information
KristopherGBaker authored Jun 19, 2019
1 parent adac07a commit 4b67ffa
Show file tree
Hide file tree
Showing 35 changed files with 2,592 additions and 2,455 deletions.
4 changes: 2 additions & 2 deletions Maaku.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "Maaku"
s.version = "0.9.1"
s.version = "0.9.2"
s.summary = "Swift cmark-gfm wrapper with a Swift friendly representation of the AST"

s.description = <<-DESC
Expand All @@ -24,7 +24,7 @@ Pod::Spec.new do |s|

s.subspec 'CMark' do |core|
core.source_files = "Sources/Maaku/CMark/**/*.swift"
core.dependency 'libcmark_gfm', '~> 0.29.2'
core.dependency 'libcmark_gfm', '~> 0.29.3'
end

s.subspec 'Core' do |md|
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ let package = Package(
targets: ["Maaku"]),
],
dependencies: [
.package(url: "https://github.com/KristopherGBaker/libcmark_gfm.git", from: "0.29.2"),
.package(url: "https://github.com/KristopherGBaker/libcmark_gfm.git", from: "0.29.3"),
.package(url: "https://github.com/Quick/Nimble.git", from: "8.0.0"),
.package(url: "https://github.com/Quick/Quick.git", from: "2.1.0")
],
Expand Down
10 changes: 5 additions & 5 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- libcmark_gfm (0.29.2)
- Nimble (8.0.1)
- libcmark_gfm (0.29.3)
- Nimble (8.0.2)
- Quick (2.1.0)
- SwiftLint (0.33.0)

Expand All @@ -18,11 +18,11 @@ SPEC REPOS:
- SwiftLint

SPEC CHECKSUMS:
libcmark_gfm: 0d4925ca4f8c2cc89b65d7ff4ed1162ff413911d
Nimble: 45f786ae66faa9a709624227fae502db55a8bdd0
libcmark_gfm: cbf2fe0fd3983202f00b40d4742d82cd173ff7c3
Nimble: 622629381bda1dd5678162f21f1368cec7cbba60
Quick: 4be43f6634acfa727dd106bdf3929ce125ffa79d
SwiftLint: fed9c66336e41fc74dc48a73678380718f0c8b0e

PODFILE CHECKSUM: db683c8d21d426f02ffd5b901ea1ce625806c872

COCOAPODS: 1.7.0
COCOAPODS: 1.7.2
10 changes: 5 additions & 5 deletions Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions Pods/Nimble/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 18 additions & 18 deletions Pods/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Pods/Nimble/Sources/Nimble/Expression.swift

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 10 additions & 6 deletions Pods/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 2 additions & 11 deletions Pods/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions Pods/Nimble/Sources/Nimble/Matchers/BeLessThan.swift

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4b67ffa

Please sign in to comment.