Skip to content

Commit 9f6256a

Browse files
committed
1.0.1 release prep
1 parent 87717ca commit 9f6256a

File tree

7 files changed

+29
-6
lines changed

7 files changed

+29
-6
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Changelog
2+
3+
## 1.0.1 - 2026-01-04
4+
- style nits
5+
6+
## 1.0.0 - 2026-01-04
7+
- faster again
8+
- better errors
9+
- ci & doco
10+
11+
## 0.3.0 - 2026-01-03
12+
- speedup
13+
- safety rails
14+
15+
## 0.2.0 - 2026-01-03
16+
- gemify
17+
18+
## 0.1.0 - 2025-12-31
19+
- idea

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ source 'https://rubygems.org'
55
gemspec
66

77
group :development, :test do
8+
gem 'irb'
89
gem 'minitest'
910
gem 'rake'
1011
gem 'rdoc', '>= 7'

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025 inopinatus
3+
Copyright (c) 2026 inopinatus
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ If testing with cooked interactive input at the console, note that linefeed's de
8484

8585
## License
8686

87-
MIT license. Copyright (c) 2025 inopinatus
87+
MIT license. Copyright (c) 2026 inopinatus
8888

8989
## Contributing
9090

Rakefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
require 'bundler/setup'
44
require 'bundler/gem_tasks'
5+
require 'rake/clean'
56
require 'rdoc/task'
67
require 'rake/testtask'
7-
require 'tmpdir'
8-
require 'fileutils'
8+
9+
CLEAN.include('tmp', 'doc', 'pkg', FileList['*.gem'])
910

1011
Rake::TestTask.new do |t|
1112
t.libs << 'lib'
@@ -40,6 +41,7 @@ Rake::RDocTask.new do |rdoc|
4041
rdoc.generator = 'aliki'
4142
rdoc.title = 'Linefeed RDoc'
4243
rdoc.options << '--show-hash'
44+
rdoc.options << '--force-output'
4345
end
4446

4547
desc 'Run the examples'

lib/linefeed/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Linefeed
4-
VERSION = '1.0.0'
4+
VERSION = '1.0.1'
55
end

linefeed.gemspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ Gem::Specification.new do |gem|
1212
gem.homepage = 'https://inopinatus.github.io/linefeed/'
1313
gem.license = 'MIT'
1414
gem.required_ruby_version = '>= 3.4'
15-
gem.files = Dir['lib/**/*.rb', 'README.md', 'LICENSE', 'examples/**/*', 'test/**/*']
15+
gem.files = Dir['lib/**/*.rb', 'README.md', 'CHANGELOG.md', 'LICENSE', 'examples/**/*']
1616
gem.require_paths = ['lib']
1717
gem.metadata = {
1818
'homepage_uri' => 'https://inopinatus.github.io/linefeed/',
1919
'source_code_uri' => 'https://github.com/inopinatus/linefeed',
20+
'changelog_uri' => 'https://github.com/inopinatus/linefeed/blob/main/CHANGELOG.md',
2021
'bug_tracker_uri' => 'https://github.com/inopinatus/linefeed/issues',
2122
'rubygems_mfa_required' => 'true'
2223
}

0 commit comments

Comments
 (0)