Skip to content

Commit c5af0a1

Browse files
committed
Release 1.4.0
1 parent 4f94036 commit c5af0a1

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 1.4.0
2+
- Added a Minimum Spanning Tree Fuction `mst()` based on Jarnik's Algorithm (aka Prim's Algorithm)
3+
- Simplified Dijkstra's Algorithm implementation
4+
15
### 1.3.1
26
- Fixes a bug that could result in the wrong edges being removed when a vertex is removed (thanks @brandonroth)
37
- Silences some warnings about printing optionals introduced in Swift 3.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Use the CocoaPod `SwiftGraph`.
1717
Add the following to your `Cartfile`:
1818

1919
```
20-
github "davecom/SwiftGraph" ~> 1.3.1
20+
github "davecom/SwiftGraph" ~> 1.4.0
2121
```
2222

2323
### Swift Package Manager (SPM)

SwiftGraph.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'SwiftGraph'
3-
s.version = '1.3.1'
3+
s.version = '1.4.0'
44
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
55
s.summary = 'A Graph Data Structure in Pure Swift'
66
s.homepage = 'https://github.com/davecom/SwiftGraph'

0 commit comments

Comments
 (0)