Skip to content

Commit

Permalink
Version Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
fjcaetano committed Jan 10, 2018
1 parent 4dc03d5 commit 24ba434
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 16 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion ReCaptcha.podspec
Original file line number Diff line number Diff line change
@@ -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
Expand Down
13 changes: 3 additions & 10 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 24ba434

Please sign in to comment.