Skip to content

Commit

Permalink
docs: bump to 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
drmohundro committed Sep 29, 2021
1 parent 19219b4 commit 6469881
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v6.0.0 (September 28, 2021)

- Rename main class from `SWXMLHash` to `XMLHash` so that the module name doesn't conflict with the class name. There are a decent number of issues related to naming conflicts so hopefully this will avoid them. Fixes [#242](https://github.com/drmohundro/SWXMLHash/issues/242).

## v5.0.2 (February 6, 2021)

- Bring in Swift Package Manager fixes [#232](https://github.com/drmohundro/SWXMLHash/pull/232), [#237](https://github.com/drmohundro/SWXMLHash/pull/237), and [#238](https://github.com/drmohundro/SWXMLHash/pull/238).
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ platform :ios, '10.0'
use_frameworks!

target 'YOUR_TARGET_NAME' do
pod 'SWXMLHash', '~> 5.0.0'
pod 'SWXMLHash', '~> 6.0.0'
end
```

Expand All @@ -73,7 +73,7 @@ $ brew install carthage
Then add the following line to your `Cartfile`:

```
github "drmohundro/SWXMLHash" ~> 5.0
github "drmohundro/SWXMLHash" ~> 6.0
```

### Swift Package Manager
Expand All @@ -83,7 +83,7 @@ Swift Package Manager requires Swift version 4.0 or higher. First, create a

```swift
dependencies: [
.package(url: "https://github.com/drmohundro/SWXMLHash.git", from: "5.0.0")
.package(url: "https://github.com/drmohundro/SWXMLHash.git", from: "6.0.0")
]
```

Expand Down
2 changes: 1 addition & 1 deletion SWXMLHash.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SWXMLHash'
s.version = '5.0.2'
s.version = '6.0.0'
s.summary = 'Simple XML parsing in Swift'
s.homepage = 'https://github.com/drmohundro/SWXMLHash'
s.license = { type: 'MIT' }
Expand Down

0 comments on commit 6469881

Please sign in to comment.