Compare commits

...

9 Commits

Author SHA1 Message Date
Brooke Kuhlmann
6598ff4584 Added version release notes 2024-12-27 15:30:07 -07:00
Brooke Kuhlmann
e6db4a2270 Updated to Git Lint 9.0.0
link:https://alchemists.io/projects/git-lint/versions[Details].

Milestone: patch
2024-12-27 14:07:32 -07:00
Brooke Kuhlmann
8ce6c3fc2d Updated to Caliber 0.68.0
link:https://alchemists.io/projects/caliber/versions[Details].

Milestone: minor
2024-12-27 08:40:18 -07:00
Brooke Kuhlmann
3b8adb89c1 Updated to Ruby 3.4.0
link:https://www.ruby-lang.org/en/news/2024/12/25/ruby-3-4-0-released[Details].

Milestone: major
2024-12-27 08:35:13 -07:00
Brooke Kuhlmann
f0fded3d1e Added version release notes 2024-11-11 08:06:26 -07:00
Brooke Kuhlmann
ee28395f66 Fixed library install order
Necessary to ensure Rust libraries are installed first especially in regards to Ruby since Ruby needs `rustc` for YJIT support.

Milestone: patch
2024-11-10 11:23:57 -07:00
Brooke Kuhlmann
4c01cfa323 Added version release notes 2024-11-09 08:25:19 -07:00
Brooke Kuhlmann
d4ff286f90 Updated to Git Lint 8.7.0
link:https://alchemists.io/projects/git-lint/versions[Details].

Milestone: minor
2024-11-09 07:19:10 -07:00
Brooke Kuhlmann
def1e57fad Updated to Caliber 0.64.0
link:https://alchemists.io/projects/caliber[Details].

Milestone: minor
2024-11-09 07:05:00 -07:00
7 changed files with 25 additions and 10 deletions

View File

@@ -1 +1 @@
3.3.6 3.4.1

View File

@@ -2,9 +2,9 @@ cff-version: 1.2.0
message: Please use the following metadata when citing this project in your work. message: Please use the following metadata when citing this project in your work.
title: macOS title: macOS
abstract: Shell scripts for automated macOS machine setup. abstract: Shell scripts for automated macOS machine setup.
version: 19.0.1 version: 20.0.0
license: Hippocratic-2.1 license: Hippocratic-2.1
date-released: 2024-11-05 date-released: 2024-12-27
authors: authors:
- family-names: Kuhlmann - family-names: Kuhlmann
given-names: Brooke given-names: Brooke

View File

@@ -4,7 +4,7 @@ ruby file: ".ruby-version"
source "https://rubygems.org" source "https://rubygems.org"
gem "caliber", "~> 0.58" gem "caliber", "~> 0.68"
gem "debug", "~> 1.9" gem "debug", "~> 1.9"
gem "git-lint", "~> 8.0" gem "git-lint", "~> 9.0"
gem "rake", "~> 13.2" gem "rake", "~> 13.2"

View File

@@ -53,7 +53,7 @@ To install, run:
---- ----
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 19.0.1 git checkout 20.0.0
---- ----
== Usage == Usage

View File

@@ -1,5 +1,20 @@
= Versions = Versions
== 20.0.0 (2024-12-27)
* 🔼 Updated to Caliber 0.68.0 - Brooke Kuhlmann
* 🔼 Updated to Git Lint 9.0.0 - Brooke Kuhlmann
* 🔼 Updated to Ruby 3.4.0 - Brooke Kuhlmann
== 19.1.1 (2024-11-11)
* ✅ Fixed library install order - Brooke Kuhlmann
== 19.1.0 (2024-11-09)
* 🔼 Updated to Caliber 0.64.0 - Brooke Kuhlmann
* 🔼 Updated to Git Lint 8.7.0 - Brooke Kuhlmann
== 19.0.1 (2024-11-05) == 19.0.1 (2024-11-05)
* 🟢 Added macOS Defaults documentation link - Brooke Kuhlmann * 🟢 Added macOS Defaults documentation link - Brooke Kuhlmann

View File

@@ -42,9 +42,9 @@ while true; do
printf "%s\n" " r: Restore backups." printf "%s\n" " r: Restore backups."
printf "%s\n" " i: Install all (i.e. executes all of the above steps in order listed)." printf "%s\n" " i: Install all (i.e. executes all of the above steps in order listed)."
printf "%s\n" " Libraries:" printf "%s\n" " Libraries:"
printf "%s\n" " np: Install Node packages."
printf "%s\n" " rg: Install Ruby gems."
printf "%s\n" " rc: Install Rust crates." printf "%s\n" " rc: Install Rust crates."
printf "%s\n" " rg: Install Ruby gems."
printf "%s\n" " np: Install Node packages."
printf "%s\n" " l: Install libraries (i.e. executes all of the above steps in order listed)." printf "%s\n" " l: Install libraries (i.e. executes all of the above steps in order listed)."
printf "%s\n" " Manage:" printf "%s\n" " Manage:"
printf "%s\n" " c: Check status of managed software." printf "%s\n" " c: Check status of managed software."

View File

@@ -50,9 +50,9 @@ process_option() {
'rc') 'rc')
bin/install_rust_crates;; bin/install_rust_crates;;
'l') 'l')
bin/install_node_packages bin/install_rust_crates
bin/install_ruby_gems bin/install_ruby_gems
bin/install_rust_crates;; bin/install_node_packages;;
'c') 'c')
verify_homebrew_formulas verify_homebrew_formulas
verify_homebrew_casks verify_homebrew_casks