From 169b94a9d9191086445619fda92964e4630d5cb5 Mon Sep 17 00:00:00 2001 From: Kasper Timm Hansen Date: Sun, 15 Jan 2023 18:50:18 +0100 Subject: [PATCH] Prep v0.9.0 (#74) * 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 --- .circleci/config.yml | 4 ++-- lib/nice_partials/version.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c0fa9df..8df6358 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 @@ -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: diff --git a/lib/nice_partials/version.rb b/lib/nice_partials/version.rb index f38855c..5d22505 100644 --- a/lib/nice_partials/version.rb +++ b/lib/nice_partials/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module NicePartials - VERSION = "0.1.9" + VERSION = "0.9.0" end