Skip to content

Commit 8bf7c57

Browse files
authoredJun 26, 2020
Merge pull request #61 from Asana/release-0.12
Release 0.12 version bump and changelog
2 parents b397b65 + 5d74d83 commit 8bf7c57

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed
 

‎Drawsana.podspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'Drawsana'
3-
spec.version = '0.11.0'
3+
spec.version = '0.12.0'
44
spec.license = { :type => 'MIT' }
55
spec.homepage = 'https://asana.github.io/Drawsana'
66
spec.documentation_url = 'https://asana.github.io/Drawsana'
77
spec.authors = { 'Steve Landey' => 'stevelandey@asana.com' }
88
spec.summary = 'Let your users mark up images with freehand drawings, shapes, and text'
9-
spec.source = { :git => 'https://github.com/asana/Drawsana.git', :tag => '0.11.0' }
9+
spec.source = { :git => 'https://github.com/asana/Drawsana.git', :tag => '0.12.0' }
1010
spec.source_files = 'Drawsana/**/*.swift'
1111

12-
spec.platform = :ios, '9.0'
12+
spec.platform = :ios, '11.0'
1313

1414
spec.swift_version = '5.2'
1515
end

‎Drawsana/DrawsanaView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import UIKit
1010

11-
public let DRAWSANA_VERSION = "0.11.0"
11+
public let DRAWSANA_VERSION = "0.12.0"
1212

1313
/// Set yourself as the `DrawsanaView`'s delegate to be notified when the active
1414
/// tool changes.

‎Readme.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Drawsana 0.11.0
1+
# Drawsana 0.12.0
22

33
Drawsana is a generalized framework for making freehand drawing views on iOS. You can
44
let users scribble over images, add shapes and text, and even make your own tools.
@@ -32,7 +32,7 @@ Add `Asana/Drawsana` to your Cartfile and update your project like you would for
3232
Carthage framework, or clone the source code and add the project to your workspace.
3333

3434
```
35-
github "Asana/Drawsana" == 0.11.0
35+
github "Asana/Drawsana" == 0.12.0
3636
```
3737

3838
## Usage
@@ -95,6 +95,17 @@ open https://asana.github.io/Drawsana
9595

9696
## Changelog
9797

98+
### 0.12.0
99+
* Undo operations are now accessible outside the framework to enable you to make undoable changes with your own UI.
100+
- `AddShapeOperation`
101+
- `RemoveShapeOperation`
102+
- `ChangeTransformOperation`
103+
- `EditTextOperation`
104+
- `ChangeExplicitWidthOperation`
105+
* Fix drawing view not being redrawn after being resized.
106+
* Fix bugs related to color serialization.
107+
* Fix bugs related to text entry.
108+
98109
### 0.11.0
99110

100111
* `DrawingOperationStack.clearRedoStack()` clears all redo operations from the

0 commit comments

Comments
 (0)
Please sign in to comment.