Skip to content

Commit

Permalink
2.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
efremidze committed Aug 21, 2018
1 parent 0d12ff5 commit 3c439bc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,10 @@
# Change log

## [Version 2.0.11](https://github.com/efremidze/Magnetic/releases/tag/2.0.11)
Released on 2018-08-21

- Minor fix

## [Version 2.0.10](https://github.com/efremidze/Magnetic/releases/tag/2.0.10)
Released on 2018-07-10

Expand Down
2 changes: 1 addition & 1 deletion Magnetic.podspec
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'Magnetic'
s.version = '2.0.10'
s.version = '2.0.11'
s.summary = 'SpriteKit Floating Bubble Picker (inspired by Apple Music)'
s.homepage = 'https://github.com/efremidze/Magnetic'
s.license = { :type => 'MIT', :file => 'LICENSE' }
Expand Down
2 changes: 1 addition & 1 deletion Sources/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.0.10</string>
<string>2.0.11</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion Sources/Magnetic.swift
Expand Up @@ -152,7 +152,7 @@ extension Magnetic {
}
}

func node(at point: CGPoint) -> Node? {
open func node(at point: CGPoint) -> Node? {
return nodes(at: point).compactMap { $0 as? Node }.filter { $0.path!.contains(convert(point, to: $0)) }.first
}

Expand Down

0 comments on commit 3c439bc

Please sign in to comment.