Skip to content

Commit

Permalink
Merge pull request #61 from Asana/release-0.12
Browse files Browse the repository at this point in the history
Release 0.12 version bump and changelog
  • Loading branch information
stevelandeyasana authored Jun 26, 2020
2 parents b397b65 + 5d74d83 commit 8bf7c57
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Drawsana.podspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Pod::Spec.new do |spec|
spec.name = 'Drawsana'
spec.version = '0.11.0'
spec.version = '0.12.0'
spec.license = { :type => 'MIT' }
spec.homepage = 'https://asana.github.io/Drawsana'
spec.documentation_url = 'https://asana.github.io/Drawsana'
spec.authors = { 'Steve Landey' => '[email protected]' }
spec.summary = 'Let your users mark up images with freehand drawings, shapes, and text'
spec.source = { :git => 'https://github.com/asana/Drawsana.git', :tag => '0.11.0' }
spec.source = { :git => 'https://github.com/asana/Drawsana.git', :tag => '0.12.0' }
spec.source_files = 'Drawsana/**/*.swift'

spec.platform = :ios, '9.0'
spec.platform = :ios, '11.0'

spec.swift_version = '5.2'
end
2 changes: 1 addition & 1 deletion Drawsana/DrawsanaView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import UIKit

public let DRAWSANA_VERSION = "0.11.0"
public let DRAWSANA_VERSION = "0.12.0"

/// Set yourself as the `DrawsanaView`'s delegate to be notified when the active
/// tool changes.
Expand Down
15 changes: 13 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Drawsana 0.11.0
# Drawsana 0.12.0

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

```
github "Asana/Drawsana" == 0.11.0
github "Asana/Drawsana" == 0.12.0
```

## Usage
Expand Down Expand Up @@ -95,6 +95,17 @@ open https://asana.github.io/Drawsana

## Changelog

### 0.12.0
* Undo operations are now accessible outside the framework to enable you to make undoable changes with your own UI.
- `AddShapeOperation`
- `RemoveShapeOperation`
- `ChangeTransformOperation`
- `EditTextOperation`
- `ChangeExplicitWidthOperation`
* Fix drawing view not being redrawn after being resized.
* Fix bugs related to color serialization.
* Fix bugs related to text entry.

### 0.11.0

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

0 comments on commit 8bf7c57

Please sign in to comment.