From 6469881a3f30417c5bb02404ea4b69207f297592 Mon Sep 17 00:00:00 2001 From: David Mohundro Date: Tue, 28 Sep 2021 20:34:03 -0500 Subject: [PATCH] docs: bump to 6.0.0 --- CHANGELOG.md | 4 ++++ README.md | 6 +++--- SWXMLHash.podspec | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95e6139a..b8ca8fda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). diff --git a/README.md b/README.md index 3768ade8..fbd38c17 100644 --- a/README.md +++ b/README.md @@ -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 ``` @@ -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 @@ -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") ] ``` diff --git a/SWXMLHash.podspec b/SWXMLHash.podspec index e1abd159..f96b6811 100644 --- a/SWXMLHash.podspec +++ b/SWXMLHash.podspec @@ -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' }