Skip to content

Commit

Permalink
Bump to version 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andreamazz committed Feb 19, 2019
1 parent b923747 commit f444668
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion AMPopTip.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "AMPopTip"
s.version = "3.5.0"
s.version = "3.6.0"
s.summary = "Animated popover, great for subtle UI tips and onboarding."
s.description = <<-DESC
Animated popover that pops out of a frame. You can specify the
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
All notable changes to this project will be documented in this file.
`AMPopTip` adheres to [Semantic Versioning](http://semver.org/).

- `3.5.0` Releases - [3.6.0](#360)
- `3.5.0` Releases - [3.5.0](#350)
- `3.4.0` Releases - [3.4.0](#340)
- `3.3.0` Releases - [3.3.0](#330)
Expand All @@ -22,6 +23,10 @@ All notable changes to this project will be documented in this file.

---

## [3.6.0](https://github.com/andreamazz/AMPopTip/releases/tag/3.6.0)

- Fixed #175

## [3.5.0](https://github.com/andreamazz/AMPopTip/releases/tag/3.5.0)

- Swift 4.2 support
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,10 @@ popTip.actionAnimation = .bounce(16) // This will bounce for 16px instead of the

The arrow is centered by default, and moves to avoid the edge of the screen. You can manually change the offset from the center using the `bubbleOffset` property.

# A note about subviews

The popover is presented inside the view provided in the `in` parameter. If this view is smaller than the resulting popover, to prevent clipping set `clipsToBounds = false` on the presenting view, and set `constrainInContainerView = false` to the pop tip instance. See #175 for more context.

# Customization

Use the appearance proxy to customize the popover before creating the instance, or just use its public properties:
Expand Down

0 comments on commit f444668

Please sign in to comment.