Skip to content

Commit

Permalink
Prep v0.9.0 (#74)
Browse files Browse the repository at this point in the history
* Prep v0.9.0

* circleci change: put checkout above other steps

Our CI started failing, and the consensus seems to be to put checkout
before other build steps to fix it:

https://discuss.circleci.com/t/cannot-checkout-anymore/46671/4

* Use Ruby 3.2.0 image to satisfy starter repo Ruby requirment
  • Loading branch information
kaspth authored Jan 15, 2023
1 parent c2837f8 commit 169b94a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ aliases:
paths:
- node_modules
- &ruby_node_browsers_docker_image
- image: cimg/ruby:3.1.2-browsers
- image: cimg/ruby:3.2.0-browsers
environment:
PGHOST: localhost
PGUSER: untitled_application
Expand Down Expand Up @@ -113,8 +113,8 @@ jobs:
executor: ruby/default
parallelism: 16
steps:
- browser-tools/install-browser-tools
- checkout
- browser-tools/install-browser-tools
- run: "git clone https://github.com/bullet-train-co/bullet_train.git tmp/starter"

- run:
Expand Down
2 changes: 1 addition & 1 deletion lib/nice_partials/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module NicePartials
VERSION = "0.1.9"
VERSION = "0.9.0"
end

0 comments on commit 169b94a

Please sign in to comment.