├── .circleci ├── config.yml └── gem_credentials ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── docs ├── Analyze.png ├── Changelog.png └── nothing-log.png ├── fastlane-plugin-semantic_release.gemspec ├── fastlane ├── Fastfile └── Pluginfile ├── lib └── fastlane │ └── plugin │ ├── semantic_release.rb │ └── semantic_release │ ├── actions │ ├── analyze_commits.rb │ └── conventional_changelog.rb │ ├── helper │ └── semantic_release_helper.rb │ └── version.rb └── spec ├── analyze_commits_spec.rb ├── conventional_changelog_spec.rb └── spec_helper.rb /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/gem_credentials: -------------------------------------------------------------------------------- 1 | :rubygems_api_key: __RUBYGEMS_API_KEY__ 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/.rspec -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/Rakefile -------------------------------------------------------------------------------- /docs/Analyze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/docs/Analyze.png -------------------------------------------------------------------------------- /docs/Changelog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/docs/Changelog.png -------------------------------------------------------------------------------- /docs/nothing-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/docs/nothing-log.png -------------------------------------------------------------------------------- /fastlane-plugin-semantic_release.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/fastlane-plugin-semantic_release.gemspec -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- 1 | # Autogenerated by fastlane 2 | -------------------------------------------------------------------------------- /lib/fastlane/plugin/semantic_release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/lib/fastlane/plugin/semantic_release.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/semantic_release/actions/analyze_commits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/lib/fastlane/plugin/semantic_release/actions/analyze_commits.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/semantic_release/actions/conventional_changelog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/lib/fastlane/plugin/semantic_release/actions/conventional_changelog.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/semantic_release/helper/semantic_release_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/lib/fastlane/plugin/semantic_release/helper/semantic_release_helper.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/semantic_release/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/lib/fastlane/plugin/semantic_release/version.rb -------------------------------------------------------------------------------- /spec/analyze_commits_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/spec/analyze_commits_spec.rb -------------------------------------------------------------------------------- /spec/conventional_changelog_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/spec/conventional_changelog_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xotahal/fastlane-plugin-semantic_release/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------