Skip to content

Commit 34a6ef4

Browse files
committed
updating release to 0.9
1 parent 3bee7dd commit 34a6ef4

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
# 0.9
3+
4+
* Removed `reference` initializer label from some initializers
5+
* Renamed some generic type parameters
6+
* Made unit testing a bit simpler to manage
7+
* Improved doc comments slightly
8+
9+
# 0.1
10+
11+
* First Release

CopyOnWrite.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 = "CopyOnWrite"
3-
s.version = "0.1.1"
3+
s.version = "0.9.0"
44
s.summary = "A μframework that makes implementing value semantics easy!"
55

66
s.description = <<-DESC

CopyOnWrite.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
/* End PBXContainerItemProxy section */
2626

2727
/* Begin PBXFileReference section */
28+
793E144C1E80E1DC00BF167D /* CHANGELOG.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = CHANGELOG.md; sourceTree = "<group>"; };
2829
7985B93A1E5BF1C800C100E7 /* CopyOnWrite.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CopyOnWrite.framework; sourceTree = BUILT_PRODUCTS_DIR; };
2930
7985B93D1E5BF1C800C100E7 /* CopyOnWrite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CopyOnWrite.h; sourceTree = "<group>"; };
3031
7985B93E1E5BF1C800C100E7 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
@@ -109,6 +110,7 @@
109110
7985B95B1E5BF63B00C100E7 /* LICENSE */,
110111
7985B9551E5BF49300C100E7 /* Package.swift */,
111112
7985B95C1E5BF63B00C100E7 /* README.md */,
113+
793E144C1E80E1DC00BF167D /* CHANGELOG.md */,
112114
);
113115
name = Distribution;
114116
sourceTree = "<group>";

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Take care to use the correct initializer for the right type you want to store. I
161161

162162
## Requirements
163163

164-
* 0.1.0 is supported on Xcode 8.0+/Swift 3.0+
164+
* 0.9.0 is supported on Xcode 8.0+/Swift 3.0+
165165
* iOS 8+/OS X 10.9+/watchOS 2+/tvOS 9+
166166

167167
## Installation
@@ -171,23 +171,23 @@ Take care to use the correct initializer for the right type you want to store. I
171171
`CopyOnWrite` is available through [CocoaPods](https://cocoapods.org). To install it, simply add the following line to your Podfile:
172172

173173
```ruby
174-
pod 'CopyOnWrite', '~> 0.1.0'
174+
pod 'CopyOnWrite', '~> 0.9.0'
175175
```
176176

177177
### Carthage
178178

179179
`CopyOnWrite` can be integrated with [Carthage](https://github.com/Carthage/Carthage). Add the following to your `Cartfile` to use it:
180180

181181
```
182-
github "klundberg/CopyOnWrite" ~> 0.1.0
182+
github "klundberg/CopyOnWrite" ~> 0.9.0
183183
```
184184

185185
### Swift Package Manager
186186

187187
Add the following line to your dependencies list in your `Package.swift` file:
188188

189189
```
190-
.Package(url: "https://github.com/klundberg/CopyOnWrite.git", versions:Version(0,1,0)..<Version(0,2,0)),
190+
.Package(url: "https://github.com/klundberg/CopyOnWrite.git", versions:Version(0,9,0)..<Version(1,0,0)),
191191
```
192192

193193
### Manual Installation

0 commit comments

Comments
 (0)