You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.markdown
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,26 @@ KissXML is a mature library used in thousands of products. It's also used in oth
19
19
20
20
KissXML was inspired by the TouchXML project, but was created to add full support for generating XML as well as supporting the entire NSXML API.
21
21
22
+
### Getting Started
23
+
24
+
The minimum deployment target is now iOS 8.0 / macOS 10.8 / tvOS 9.0 / watchOS 2.0.
25
+
26
+
The easiest way to install `KissXML` is using CocoaPods.
27
+
28
+
```ruby
29
+
use_frameworks!
30
+
pod 'KissXML'
31
+
```
32
+
33
+
After `pod install` open your `.xcworkspace` and import:
34
+
35
+
```
36
+
import KissXML // swift
37
+
@import KissXML; //objective-c
38
+
```
39
+
40
+
### Learn More
41
+
22
42
**[Get started using KissXML](https://github.com/robbiehanson/KissXML/wiki/GettingStarted)**<br/>
23
43
**[Learn more about KissXML](https://github.com/robbiehanson/KissXML/wiki)**<br/>
24
44
@@ -30,6 +50,7 @@ Love the project? Wanna buy me a coffee? (or a beer :D) [![donation](http://www.
30
50
31
51
## Changelog
32
52
53
+
* 5.1.0 - Jul 6 2016 - Removed need for `libxml_module` subspec by removing references to libxml in public headers. Added Obj-C generics and nullability support to match NSXML API. Added watchOS support. Minimum iOS version is now 8.0.
33
54
* 5.0.3 - Feb 1 2016 - Removed `DDXML_NS_DECLARATIONS_ENABLED` to allow for better Swift compatibility. Added `DDXML.swift` with mappings between NSXML classes and constants and DDXML.
34
55
* 5.0.2 - Jan 26 2016 - Enable Swift support via `libxml/module.modulemap` and `DDXML_LIBXML_MODULE_ENABLED` macro. You can use the `KissXML/libxml_module` CocoaPods subspec to enable this feature.
35
56
* 5.0.1 - Jan 21 2016 - Run tests on iOS and Mac targets.
0 commit comments