mirror of
https://github.com/samsonjs/wordexp.git
synced 2026-03-25 08:45:54 +00:00
Compare commits
No commits in common. "main" and "v0.2.1" have entirely different histories.
5 changed files with 7 additions and 12 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
|
@ -10,12 +10,12 @@ jobs:
|
|||
rubocop:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v4
|
||||
- uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 4.0.0
|
||||
- name: Cache Ruby gems
|
||||
uses: actions/cache@v5
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: vendor/bundle
|
||||
key: ${{ runner.os }}-bundle-4.0.0-${{ hashFiles('Gemfile.lock') }}
|
||||
|
|
@ -34,12 +34,12 @@ jobs:
|
|||
matrix:
|
||||
ruby-version: ["3.2.9", "3.3.10", "3.4.8", "4.0.0"]
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v4
|
||||
- uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: ${{ matrix.ruby-version }}
|
||||
- name: Cache Ruby gems
|
||||
uses: actions/cache@v5
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: vendor/bundle
|
||||
key: ${{ runner.os }}-bundle-${{ matrix.ruby-version }}-${{ hashFiles('Gemfile.lock') }}
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
4.0.1
|
||||
4.0.0
|
||||
|
|
|
|||
|
|
@ -4,11 +4,6 @@
|
|||
|
||||
[gh]: https://github.com/samsonjs/wordexp/releases
|
||||
|
||||
# 0.2.2
|
||||
# 2026-01-02
|
||||
|
||||
- Build the native extension under `wordexp/` so `require "wordexp/wordexp_ext"` resolves correctly
|
||||
|
||||
# 0.2.1
|
||||
# 2026-01-02
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
require 'mkmf'
|
||||
|
||||
create_makefile 'wordexp/wordexp_ext'
|
||||
create_makefile 'wordexp_ext/wordexp_ext'
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
module Wordexp
|
||||
VERSION = '0.2.2'.freeze
|
||||
VERSION = '0.2.1'.freeze
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in a new issue