A summary of data about the Ruby ecosystem.

Recent Releases of https://github.com/fastlane/fastlane

https://github.com/fastlane/fastlane - 1.7.3 Keychain improvements

  • Added automatic switching back to previously active keychain (thanks @milch)
  • Added storing of previously active keychain in the lane environment (thanks @milch)
  • Updated fastlane_core dependency

- Ruby
Published by KrauseFx over 10 years ago

https://github.com/fastlane/fastlane - 1.7.2 Accessing lane context easier

From

Actions.lane_context[Actions::SharedValues::LANE_NAME]

to

lane_context[SharedValues::LANE_NAME]

Makes things so much cleaner ✅ More details about the available context variables here.

Also new, check out the Code Signing Guide 🔑

- Ruby
Published by KrauseFx over 10 years ago

https://github.com/fastlane/fastlane - 1.7.1 Improvements

  • Added new destination option for xcodebuild (thanks Adam Cohen-Rose)
  • Improved update_fastlane action (thanks @milch)
  • Improved hipchat integration (thanks Christoph Dieckmann)
  • Updated to the brand new spaceship powered cert

- Ruby
Published by KrauseFx over 10 years ago

https://github.com/fastlane/fastlane - 1.7.0 New Actions

  • New: import_certificate: Import certificates into the current default keychain (thanks @gin0606)
  • New: lcov: Generate code coverage reports based on lcov (thanks Thiago Lioy)
  • New: appstore: Action to upload new builds and metadata to the App Store, alias for deliver
  • New: update_app_group_identifiers: Updates the App Group Identifiers in the given Entitlements file, so you can have app groups for the app store build and app groups for an enterprise build (thanks Mathias Aichinger)
  • New: create_keychain: Create a new keychain, which can then be used to import certificates (thanks @gin0606)
  • New: delete_keychain: Delete an existing keychain (thanks @gin0606)
  • New notify_room option for hipchat (thanks Christoph Dieckmann)
  • New silent option for the ipa action (thanks @gfpacheco)
  • Updated sigh, shenzhen, produce dependencies

- Ruby
Published by KrauseFx over 10 years ago

https://github.com/fastlane/fastlane - 1.6.0 New Actions, Template Support

  • Added brand new HTML template system for the email and the s3 action (thanks Thiago Lioy)
  • Added new backup_file and restore_file actions (thanks @gin0606)
  • Added new destination_timeout option to xctest (thanks @samsonjs)
  • Added support for custom hosts in hipchat integration (thanks Christoph Dieckmann)
  • Removed Hall integration, as their service shut down
  • Updated project landing page
  • Updated sigh dependency

- Ruby
Published by KrauseFx over 10 years ago

https://github.com/fastlane/fastlane - 1.5.0 Full Mercurial Support

  • Added full Mercurial support to fastlane (thanks @sjrmanning)
    • hg_push
    • hg_commit_version_bump
    • hg_add_tag
    • hg_ensure_clean_status
  • Added new testflight action to upload builds straight to TestFlight 🚀
  • Multi-Author Support :person_with_blond_hair:
    • One action can finally store multiple owners. Try it: fastlane action cocoapods
  • Added new options to the s3 action (thanks @rossbeale)
  • Improved TestMunk action (thanks Johannes Berdin)
  • Added new hockey option to specify users
  • Updated sigh, deliver and produce

- Ruby
Published by KrauseFx over 10 years ago

https://github.com/fastlane/fastlane - 1.4.0 New Integrations

New Features

  • New ensure_git_branch action to make sure you're on a specific git branch (thanks @dbachrach)
  • New update_info_plist action to update the Info.plist before building your app (thanks @tobiasstrebitzer)
  • Added commit_sha, repository_url and build_server_url options to hockey action (thanks @tadpol)
  • Added 6 new options to the cocoapods integration (thanks @tadpol)

New Commands

  • fastlane lanes: Lists all available lanes with description
  • fastlane list: Lists all available lanes without description
  • fastlane docs: Generates a markdown based documentation of all your lanes

Updated

  • Upgraded sigh to use the new spaceship.airforce 🚀
  • Preparations for new tools to come 👍

Improvements

  • Improved nested Appfile (thanks @fabiomassimo)
  • Added debug information to commit_version_bump action (thanks @lmirosevic)
  • Improved ipa integration (thanks @jeanregisser)
  • Improved error handling in update_project_provisioning action

- Ruby
Published by KrauseFx over 10 years ago

https://github.com/fastlane/fastlane - 1.3.2 Updated actions for new core

Preparations for the new fastlane_core

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 1.3.1 Fixed S3 Integration

  • Fixed an issue with the shenzhen dependency
  • Correctly passing of version number to deliver action
  • Other little improvements

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 1.3.0 Code Signing done right

  • Added new action to update the Xcode project code signing options based on your provisioning profile with support for App Extensions 🚀 (thanks @tobiasstrebitzer)
  • Improved output and error information when the ipa action goes wrong
  • Added support for custom snapshot path (thanks @hedjirog)
  • Improved handling of fastlane init when the fastlane folder was already created
  • fastlane setup process now asks for the app's scheme
  • Improved generated Fastfile
  • Improved action template
  • Fixed problems with custom paths for reset_git action
  • Added new option to increment_version_number action (thanks @tobiasstrebitzer)
  • Fixed problems when user doesn't have the bash set to UTF-8
  • Cleaned up unsupported ipa option (thanks @domhof)
  • Updated fastlane dependencies

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 1.2.3 Appfile Multi-Platform Support

Thanks to @fabiomassimo you can now define your Appfile for multiple platforms:

app_identifier "net.sunapps.1"
apple_id "felix@sunapps.net"
team_id "Q2CBPJ58CC"

for_platform :ios do
  apple_id "fabio@sunapps.ios.net"
  team_id 'Q2CBPJ58AA' # for all iOS related things
  for_lane :enterprise do
    app_identifier 'net.sunapps.ios.enterprise'
  end
end

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 1.2.2 New AWS S3 options

  • When distributing a build to AWS S3, the current build number is now stored on S3 as well, which you can use to check for updates in your app (thanks @dbachrach)
  • Fixed an error in the Fastfile template (thanks @avanderberg)
  • Improved the documentation

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 1.2.1 Improvements

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 1.2.0 Added ChatWork Integration

  • Added integration for ChatWork (thanks @astronaughts)
  • Added support for Mac OS for many built-in actions
  • Improved parameter verification for new frameit integration
  • Improved HipChat integration (thanks @eytanbiala)

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 1.1.0 New Integrations, More Improvements

  • Added new Mailgun action to send emails right from fastlane (thanks @thiagolioy)
  • Added new OCLint action for static analysis (thanks @HeEAaD)
  • Added integration for frameit 2.0
  • Build output is now much cleaner
  • Added new metadata_only mode for the new deliver version
  • Added new exclude_pattern option to clean_build_artifacts action
  • Added more options to s3 action (thanks @frobichaud)
  • commit_version_bump will never commit any other files
  • Updated the fastlane action template to match the new requirements
  • Made git_author and last_git_commit available to all fastlane actions
  • Improved hockey integration
  • snapshot action now doesn't open the HTML page by default
  • Updated dependencies

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 1.0.2 Hotfix: shenzhen WatchKit Issue

This release switches to krausefx-shenzhen to resolve the WatchKit binary issues

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 1.0.1 Fixed ipa action

  • Due to an issue with the latest release of shenzhen the ipa action generated invalid ipa files your app doesn't have WatchKit support
  • Added mac support to hockey integration
  • Added public_identifier option to hockey integration
  • Improved fastlane docs rendering

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 1.0.0 fastlane

I'm excited to announce that fastlane is now version 1.0, following the Semantic Versioning 🎉

Multi Platform Support 🚀

The main reason for the success of fastlane was the great support for one specific platform. I was working hard on refactoring fastlane to handle both iOS and Mac projects with more platforms to come. This doesn't change anything for your existing projects. You can already start using fastlane for Mac OS projects.
Check out the release notes for more information.

Auto Update ☁️

Tired of manually updating fastlane each time a new release is available? Just add update_fastlane to your Fastfile and it will automatically update itself.

Documentation 📖

You can now view the latest documentation of available actions and their parameters right in your terminal, using the fastlane action command.

Additionally, you can use the new fastlane docs command to generate a documentation of all your available fastlane lanes with a short description.

New Configuration System 🔧

All 45 built-in fastlane integrations were completely refactored to use a brand new configuration system. This way fastlane knows about the available parameters, which is used to generate the documentation. Additionally, this update makes testing much easier. More information available on in release 0.12.0.

Few more things

  • Added teams, mandatory and tags options to the hockey integration
  • Improved documentation renderer
  • Improved handling of unstable networking connections
  • Fixed handling of some characters in the add_git_tag integration
  • Updated dependencies to all other fastlane tools
  • New version of sigh which can maintain your local provisioning profiles as well

I hope you like this release, as always you can send me feedback on Twitter @KrauseFx or via GitHub issues 😃

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.13.0 New Integration

  • Added new hall integration (thanks @eytanbiala)
  • Fixed bug in commit_version_bump (thanks @lmirosevic)
  • Added notes_type option to Hockey action (thanks @orta)
  • Added release_type option to Hockey action (thanks @keatongreve)
  • Updated Fastfile template (thanks @dataich)
  • Fixed threading problem of network request
  • Fixed for_lane integration with new platform support
  • Fixed installation issues
  • Fixed fastlane --help command

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.12.5 New dsym action

  • Added dsym_zip action (thanks @lmirosevic)
  • You can now use different Apple IDs for deliver than for the rest of integrations
  • Fixed problem when naming fastlane folder .fastlane (thanks @skywinder)
  • Added output_style parameter for modifying xcpretty output (thanks @lmirosevic)
  • Re-added :force option to commit_version_bump action (thanks @milch)

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.12.4 More fixes

Fixes for some more actions and even more tests 👍

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.12.3 Fixed integration issues

  • Fixes issues with hockey app not correctly using default settings
  • Added more tests

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.12.2 Bugfixes

Resolved some issues introduced with the recent updates

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.12.0 New Configuration System

tldr: You might need to update your Fastfile using the MigrationGuide.

The biggest change of fastlane yet 💥

126 new commits, all added over the weekend (crazy me, @joshdholtz and @milch 🚀), all in one giant pull request.

The fastlane actions now use a completely new way to offer configuration: Up until now, every action handled configuration, default values and validation on its own.

I took all that and moved it into fastlane_core to have all in a centralised code base.

Why?

  • You now have the same API style for all fastlane actions
  • All available parameters can now be set as either arguments or environment variables
  • Much better error handling and test coverage thanks to a centralised system
  • Better generated documentation when using fastlane actions
  • Less boiler code for each action

What has changed for me?

I tried to adapt fastlane to not require a lot of changes in your Fastfile. There are only 3 actions that need to be adapted: I published a short MigrationGuide.

These changes were necessary to support future development. The plan is to release a 1.0.0 later next week. This was the first and only time there were breaking changes in fastlane.

Future

We have to think about our future. We want it to be bright 🔆 and fast 🚀!

That's why this change enables fastlane doing so much cool new stuff in future releases, I'm super excited about what's coming next!

One more thing

The code coverage of fastlane was improved to: Coverage Status

The updated fastlane_core has a similar coverage: Coverage Status

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.11.0 Cross-Platform Support

fastlane now supports multiple platforms, right now iOS and Mac 🚀

  • Every action now specifies support for the different platforms 🔓
  • fastlane generates a nice documentation of the new Fastfile using fastlane docs 📖
  • Auto completion of all actions for a platform: e.g. fastlane ios will list all iOS lanes 🚘
  • A lot of internal refactorings and enhanced tests 🏭

The example below demonstrates what's possible. But don't worry, if you're using fastlane for iOS only, you will not notice any changes at all 😃

before_all do
  puts "This block is executed before every action of all platforms"
end

platform :ios do
  before_all do
    cocoapods
  end

  lane :beta do
    ipa
    hockey
  end

  after_all do
    puts "Finished iOS related work"
  end
end

platform :mac do
  lane :beta do
    xcodebuild
    hockey
  end
end

after_all do
  puts "Executed after every lane of both Mac and iPhone"
  slack
end

Execute lanes like this:

fastlane ios beta
fastlane mac beta

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.10.0 PEM Integration

  • You can now use PEM right in fastlane. This will automatically create a new push profile if needed 🚀 (Thanks @aafa for working on PEM)
  • Improved the documentation generated when using fastlane docs 📖

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.9.0 Generate lane documentation

This release was kindly sponsored by Product Hunt 🌟

  • Use fastlane docs to generate a markdown based documentation of all your lanes. 📖
  • The ipa action now shows much more useful information while building and on errors 🚀
  • slack messages now handle super long messages much better 👍
  • Fixed a bug in increment_build_number handling non string values

Example documentation for lanes:

desc "Create new screenshots for all the devices"
desc "This will use `snapshot` to interact with the app"
lane :screenshots do
  snapshot
end

This will generate a new markdown file in ./fastlane/README.md to view right on GitHub 👍


Example lane documentation:

screenshot 2015-04-15 20 30 10

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.8.1 Fixed problem with deliver

Fixed a problem with the deliver integration when no ipa file was used and only app metadata was uploaded.

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.8.0 fastlane lanes and enhancer

  • New fastlane lanes command: List all available lanes right from your terminal 🎉
  • Added enhaner: This will track the number of errors for each action to detect integration issues. More information about the data and how to opt out available on GitHub 🔒
  • Added support for multiple report types with xctest action (thanks @coreyfloyd)
  • Improved Documentation 📖
  • DELIVERFILE_PATH to use a specific Deliverfile 📦

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.7.0 Brand new inline documentation

🚀 You can now view all fastlane actions and parameters without leaving the terminal 🚀


All changes:

  • Added new fastlane actions and fastlane action [name] commands 🎉
  • All tools now launch much faster: 🚀
  • If you don't specify a lane, you'll get a selection of available lanes 🐶 (much obvious)
  • Updated all fastlane tools 🌟
  • Updated new action template 💅
  • You can skip the update check using FASTLANE_SKIP_UPDATE_CHECK 🔒

screenshot 2015-04-12 22 48 15
screenshot 2015-04-12 22 48 47

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.6.1 Improved startup times

  • fastlane launches much faster now 🚀
  • Some bug fixes

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.6.0  Watch and other new features

  • Have you looked at the project page recently? @ashfurrow worked on an awesome new fastlane documentation
  • Updated deliver, snapshot and the other tools, to fully support the shiny new  Watch and work with Xamarin and Ruby Motion projects
  • push_to_git_remote now uses your currently used git branch by default
  • You can now pass your own list of files to reset_git_repo to reset only specific files
  • You can now specify your own git tag when using add_git_tag
  • Improved shenzhen integration (thanks @ashfurrow)
  • Added a way to force commit a version bump

Obligatory rocket: 🚀

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.5.0 New Features

  • Added register_devices action to specify the available iOS devices right in fastlane (thanks @lmirosevic)
  • Added increment_version_number action (thanks @serluca)
  • Specify lane specific values using for_lane (thanks @fabiomassimo)
  • Support xcargs option in ipa action (thanks Ken)
  • Skip storing your credentials in your Keychain using FASTLANE_DONT_STORE_PASSWORD
  • Path to IPA files are now always absolute
  • Preparations for future Xcode releases
  • More bug fixes and improvements

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.4.2 Improvements

  • ipa command automatically uses the provisioning profiles from sigh
  • Updated fastlane_core to fix SSL issues

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.4.1 Fixed wrongly named extension

Fixed a problem with an extension

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.4.0 Carthage Integration

  • Added Carthage support (Thanks @bassrock)
  • Improved xcpretty integration (Thanks @dtrenz)
  • You can specify the xcodeproj_path when increasing the version (Thanks @lmirosevic)
  • Improved showing of error messages in Slack/Hipchat (Thanks @JaniJegoroff)

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.3.0 New Integrations and Features

  • Support for custom values and configuration for slack notifications (Thanks @lmirosevic)
  • Support for setting code signing identity and provisioning profile with xcodebuild action (Thanks @josh)
  • New increment_build_number options with support for different projects (Thanks @lmirosevic)
  • Automatic detection of workspace in xcodebuild action (Thanks @dtrenz)
  • Support for defining a minimum fastlane version in the Fastfile (Thanks @KrauseFx 😇)
  • Support for new Crashlytics environment variables (Thanks @dtrenz)
  • New xctest action documentation (Thanks @dtrenz)
  • Fixed naming collision with ActiveRecord (Thanks @milch)

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.2.1 Added xcexport action

  • Added xcexport action to export a signed binary (thanks @dtrenz)
  • Fixed xcodeproj dependency to work with older versions of CocoaPods

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.2.0 xcodebuild Action

  • fastlane can now show Mac OS X notifications (thanks @champo)
  • You can now also push changes made to the project to your remote repository (thanks @lmirosevic)
  • fastlane now has a new README 👍
  • New xcodebuild action, see below

xcodebuild

Thanks to @dtrenz, you can now use xcodebuild actions right in fastlane:

xcarchive

xcarchive(
  archive_path: "./build-dir/MyApp.xcarchive",
  scheme: "MyApp",
  workspace: "MyApp.xcworkspace"
)

xcbuild

xcbuild(
  scheme: "MyApp",
  workspace: "MyApp.xcworkspace"
)

xcclean

xcclean

xctest

xcarchive(
  destination: "name=iPhone 5s,OS=8.1",
  scheme: "MyApp",
  workspace: "MyApp.xcworkspace"
)

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.1.19 New Integrations

Many new integrations, special thanks to the awesome @lmirosevic for providing the new integrations 🚀

  • Added add_git_tag to automatically tag your git repository
  • Added commit_version_bump to commit the version bump
  • Added clean_build_artifacts to clean up the temporary files of sigh and the other tools
  • Added ensure_git_status_clean to make sure the repository doesn't have any un-committed changes
  • Added reset_git_repo to reset the git repository after the fastlane run
  • Added resign action to code sign an existing ipa file
  • Added support for passing the notification setting to the Crashlytics integration
  • Added support for custom notes for the typetalk integration (thanks @dataich)
  • A lot of changes under the hood to work better with the recent sigh and cert releases

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.1.18 New cert integration

Updated cert integration to work with the latest release.

A new fastlane release with new features is coming soon 🚀

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.1.17 Improved sigh integration

Resolved some issues with the sigh integration introduced with fastlane 0.1.16.

A new fastlane release with new features is coming soon 🚀

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.1.16 Updated sigh integration

Updated sigh integration to support sigh 0.4.0: https://github.com/KrauseFx/sigh/releases/tag/0.4.0

A new fastlane release with new features is coming soon 🚀

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.1.15 Amazon S3 Beta Distribution

  • Added beta and enterprise app distribution via S3! You should totally check this feature out 🚀 (thanks @joshdholtz)
  • Added support for dotenv (thanks @joshdholtz)
  • Added xcode_select action to quickly switch to a different installation of Xcode (thanks @dtrenz)
  • Added verbose flag option for ipa action (thanks @gabu)
  • Fixed not showing git branch information in the Slack error notifications
  • Fixed calling the error block in the wrong folder context

- Ruby
Published by KrauseFx almost 11 years ago

https://github.com/fastlane/fastlane - 0.1.14 New Integrations

  • Added gcovr integration to generate code coverage results (Thanks @dtrenz)
  • Added Typetalk integration (Thanks @dataich)

- Ruby
Published by KrauseFx about 11 years ago

https://github.com/fastlane/fastlane - 0.1.13 Improved sigh integration

  • fastlane will now transfer the UDID of the from sigh generated profile to all other actions.
  • Fixed a problem with the slack integration.
  • Added update_project_code_signing action to update code signing settings in an Xcode project
  • Nice new designs for the different steps
  • Fixed migration of snapshot-iPad.js

- Ruby
Published by KrauseFx about 11 years ago

https://github.com/fastlane/fastlane - 0.1.12 cert Integration

This release adds a nice integration of cert with sigh.

Changes:

  • When running cert before sigh, fastlane will automatically pass the signing identity
  • You can now use sigh :force to always renew the provisioning profile
  • sigh :force will automatically add all available devices to the profile

- Ruby
Published by KrauseFx about 11 years ago

https://github.com/fastlane/fastlane - 0.1.11 Improved Team selection

There are 2 actions available to set the your Team ID (if you're in multiple teams):

  • team_id "Q2CBPK58CA"
  • team_name "Felix Krause"

You can also store the team in your fastlane/Appfile

app_identifier "com.krausefx.app"
apple_id "felix@krausefx.com"

team_name "Felix Krause"
# team_id "Q2CBPJ58CA"

This is now available across all fastlane tools.

- Ruby
Published by KrauseFx about 11 years ago

https://github.com/fastlane/fastlane - 0.1.10 Bugfixes

Fixed problems with local custom actions

- Ruby
Published by KrauseFx about 11 years ago

https://github.com/fastlane/fastlane - 0.1.9 Major refactoring

A lot of changes under the hood: All fastlane tools now use the shared gem fastlane_core

This allows me to develop and release new features even faster 🚀

  • Added new team_id action which sets the ID of your team across all tools
  • Updated example files
  • Added Rubocop styling (thanks @JaniJegoroff)
  • Improved HipChat integration (thanks @DF-Franzi)
  • Improved parsing of shell outputs and error handling (thanks @milch)

- Ruby
Published by KrauseFx about 11 years ago

https://github.com/fastlane/fastlane - 0.1.8 Build IPAs with fastlane

  • Added ipa action to build apps right in fastlane (thanks @joshdholtz)
  • Added DeployGate integration (thanks @tnj)
  • Improved HipChat integration (thanks @jingx23)

- Ruby
Published by KrauseFx about 11 years ago

https://github.com/fastlane/fastlane - 0.1.7 Improved phantomjs dependency

  • No more manually installing phantomjs
  • Slack integration now shows the git author of the last commit

- Ruby
Published by KrauseFx about 11 years ago

https://github.com/fastlane/fastlane - 0.1.6 HipChat Integration

Thanks @jingx23 for working on this 👍

- Ruby
Published by KrauseFx about 11 years ago

https://github.com/fastlane/fastlane - 0.1.5 Verbose mode for snapshot

  • Verbose mode for snapshot: snapshot :verbose
  • Improved Slack Integration

- Ruby
Published by KrauseFx about 11 years ago

https://github.com/fastlane/fastlane - 0.1.4 'produce' integration

  • Full produce integration
  • Improved Slack integration

produce was kindly sponsored by AppInstitute.

- Ruby
Published by KrauseFx about 11 years ago

https://github.com/fastlane/fastlane - 0.1.3 Crashlytics Beta Support

  • Added support for Crashlytics Beta (Thanks @pedrogimenez)
  • Fixed bug with Slack integration

- Ruby
Published by KrauseFx about 11 years ago

https://github.com/fastlane/fastlane - 0.1.2 General Improvements

  • Upload your dsym to HockeyApp
  • Added skip_install option to sigh
  • Added direct message support for slack
  • Improved tests
  • Updated dependencies

- Ruby
Published by KrauseFx about 11 years ago

https://github.com/fastlane/fastlane - 0.1.1 Hockey Action Update

Improved usability of HockeyApp build step

- Ruby
Published by KrauseFx about 11 years ago

https://github.com/fastlane/fastlane - 0.1.0 Initial Release

Initial fastlane release: http://fastlane.tools

- Ruby
Published by KrauseFx about 11 years ago