Compare commits

..

8 Commits
2.2.0 ... 3.0.0

Author SHA1 Message Date
Brooke Kuhlmann
18ff862a4a Added version release changes. 2017-10-01 15:42:33 -06:00
Brooke Kuhlmann
c6ef97a88b Updated boot disk creation to use macOS High Sierra.
Necessary to create a boot disk for the latest macOS version.
2017-10-01 11:40:24 -06:00
Brooke Kuhlmann
67a17a0113 Updated to Ruby 2.4.2.
[Details](http://bit.ly/2yfBm4I).
2017-09-16 17:34:04 -06:00
Brooke Kuhlmann
e5f2051412 Updated to Git Cop 1.6.0.
[Changes](https://github.com/bkuhlmann/git-cop/releases/tag/v1.6.0).
2017-08-27 08:49:41 -06:00
Brooke Kuhlmann
bbdedb1a56 Updated gem dependencies. 2017-08-27 08:07:13 -06:00
Brooke Kuhlmann
cd595f1bd1 Fixed table of contents.
[ci skip]
2017-08-03 20:03:41 -06:00
Brooke Kuhlmann
e89a05fcbf Updated to Git Cop 1.5.0.
[Changes](https://github.com/bkuhlmann/git-cop/releases/tag/v1.5.0).
2017-07-30 16:03:20 -06:00
Brooke Kuhlmann
048908f2ba Updated to Git Cop 1.3.0.
- [Changes](https://github.com/bkuhlmann/git-cop/releases/tag/v1.3.0).
2017-07-17 20:15:58 -06:00
6 changed files with 27 additions and 19 deletions

View File

@@ -1 +1 @@
2.4.1 2.4.2

View File

@@ -1,3 +1,11 @@
# v3.0.0 (2017-10-01)
- Fixed table of contents.
- Updated boot disk creation to use macOS High Sierra.
- Updated gem dependencies.
- Updated to Git Cop 1.6.0.
- Updated to Ruby 2.4.2.
# v2.2.0 (2017-07-16) # v2.2.0 (2017-07-16)
- Added Git Cop support. - Added Git Cop support.

View File

@@ -3,4 +3,4 @@
source "https://rubygems.org" source "https://rubygems.org"
gem "rake", "~> 12.0" gem "rake", "~> 12.0"
gem "git-cop", "~> 1.3" gem "git-cop", "~> 1.6"

View File

@@ -2,27 +2,27 @@ GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
equatable (0.5.0) equatable (0.5.0)
git-cop (1.3.0) git-cop (1.6.1)
pastel (~> 0.7) pastel (~> 0.7)
refinements (~> 4.1) refinements (~> 4.2)
runcom (~> 1.1) runcom (~> 1.3)
thor (~> 0.19) thor (~> 0.20)
pastel (0.7.1) pastel (0.7.1)
equatable (~> 0.5.0) equatable (~> 0.5.0)
tty-color (~> 0.4.0) tty-color (~> 0.4.0)
rake (12.0.0) rake (12.1.0)
refinements (4.1.0) refinements (4.2.0)
runcom (1.1.0) runcom (1.3.0)
refinements (~> 4.1) refinements (~> 4.2)
thor (0.19.4) thor (0.20.0)
tty-color (0.4.2) tty-color (0.4.2)
PLATFORMS PLATFORMS
ruby ruby
DEPENDENCIES DEPENDENCIES
git-cop (~> 1.3) git-cop (~> 1.6)
rake (~> 12.0) rake (~> 12.0)
BUNDLED WITH BUNDLED WITH
1.15.1 1.15.4

View File

@@ -62,7 +62,7 @@ the two projects are meant to be used:
## Requirements ## Requirements
0. [macOS Sierra](https://www.apple.com/macos) (with latest software updates applied) 0. [macOS High Sierra](https://www.apple.com/macos) (with latest software updates applied)
0. [Xcode](https://developer.apple.com/xcode) (with accepted license agreement) 0. [Xcode](https://developer.apple.com/xcode) (with accepted license agreement)
## Setup ## Setup
@@ -74,7 +74,7 @@ Current Version (stable):
git clone https://github.com/bkuhlmann/mac_os.git git clone https://github.com/bkuhlmann/mac_os.git
cd mac_os cd mac_os
git checkout v2.2.0 git checkout v3.0.0
Master Version (unstable): Master Version (unstable):
@@ -171,7 +171,7 @@ Read [Semantic Versioning](http://semver.org) for details. Briefly, it means:
Please note that this project is released with a [CODE OF CONDUCT](CODE_OF_CONDUCT.md). By Please note that this project is released with a [CODE OF CONDUCT](CODE_OF_CONDUCT.md). By
participating in this project you agree to abide by its terms. participating in this project you agree to abide by its terms.
# Contributions ## Contributions
Read [CONTRIBUTING](CONTRIBUTING.md) for details. Read [CONTRIBUTING](CONTRIBUTING.md) for details.

View File

@@ -11,9 +11,9 @@ set -o pipefail
IFS=$'\n\t' IFS=$'\n\t'
# Globals # Globals
export MAC_OS_BOOT_DISK_CREATOR="/Applications/Install macOS Sierra.app/Contents/Resources/createinstallmedia" export MAC_OS_BOOT_DISK_CREATOR="/Applications/Install macOS High Sierra.app/Contents/Resources/createinstallmedia"
export MAC_OS_BOOT_DISK_PATH="/Volumes/Untitled" export MAC_OS_BOOT_DISK_PATH="/Volumes/Untitled"
export MAC_OS_INSTALLER_PATH="/Applications/Install macOS Sierra.app" export MAC_OS_INSTALLER_PATH="/Applications/Install macOS High Sierra.app"
export MAC_OS_WORK_PATH=/tmp/downloads export MAC_OS_WORK_PATH=/tmp/downloads
export MAC_OS_CONFIG_PATH="../mac_os-config" export MAC_OS_CONFIG_PATH="../mac_os-config"