Version Bump
This commit is contained in:
parent
4dc03d5820
commit
24ba434e6d
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -1,6 +1,10 @@
|
|||
# 1.0.2
|
||||
|
||||
- Fix: Better detection of resources loading end (#16)
|
||||
|
||||
# 1.0.1
|
||||
|
||||
- Fix: Webview content being dismissed when clicking outside of div frame area
|
||||
- Fix: Webview content being dismissed when clicking outside of div frame area (#14)
|
||||
|
||||
# 1.0.0
|
||||
|
||||
|
|
@ -10,9 +14,9 @@
|
|||
|
||||
- Carthage support
|
||||
- Refactored framework errors
|
||||
- Alternate endpoint to bypass firewall limitations #10
|
||||
- Fix: JS not loaded #7
|
||||
- Fix: Wrong Domain retrieving #6
|
||||
- Alternate endpoint to bypass firewall limitations (#10)
|
||||
- Fix: JS not loaded (#7)
|
||||
- Fix: Wrong Domain retrieving (#6)
|
||||
|
||||
# 0.2.0
|
||||
|
||||
|
|
|
|||
2
LICENSE
2
LICENSE
|
|
@ -1,4 +1,4 @@
|
|||
Copyright © 2017 Flávio Caetano <flavio@vieiracaetano.com>
|
||||
Copyright © 2018 Flávio Caetano <flavio@vieiracaetano.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
Pod::Spec.new do |s|
|
||||
s.name = 'ReCaptcha'
|
||||
s.version = '1.0.1'
|
||||
s.version = '1.0.2'
|
||||
s.summary = 'ReCaptcha for iOS'
|
||||
|
||||
s.description = <<-DESC
|
||||
|
|
|
|||
|
|
@ -92,20 +92,13 @@ platform :ios do
|
|||
# Checking files
|
||||
tag = last_git_tag
|
||||
|
||||
did_succeed = true
|
||||
if version_get_podspec != tag
|
||||
UI.error "Podspec version different than tag name"
|
||||
did_succeed = false
|
||||
end
|
||||
|
||||
changelog_contents = File.read '../CHANGELOG.md'
|
||||
if !changelog_contents.include? tag
|
||||
UI.error "CHANGELOG hasn't been updated"
|
||||
did_succeed = false
|
||||
UI.user_error! "CHANGELOG hasn't been updated"
|
||||
end
|
||||
|
||||
if !did_succeed
|
||||
exit 1
|
||||
if version_get_podspec != tag
|
||||
UI.user_error! "Podspec version different than tag name"
|
||||
end
|
||||
|
||||
carthage(
|
||||
|
|
|
|||
Loading…
Reference in New Issue