From 5e4d55a478654ff9290407e9921dc977c8f9c44c Mon Sep 17 00:00:00 2001 From: Joseph BLANCHARD Date: Wed, 12 Jun 2024 10:16:59 +0200 Subject: [PATCH] add changelog --- CHANGELOG.md | 4 ++++ Gemfile.lock | 2 +- lib/rails/buddy/version.rb | 2 +- rails-buddy.gemspec | 3 ++- 4 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..19715b2 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,4 @@ +## 1.0.0 (2024-06-12) + +- Initiale release +- Can see logs on http://localhost:3000/buddy diff --git a/Gemfile.lock b/Gemfile.lock index 7263b91..93c5a6e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rails-buddy (0.1.0) + rails-buddy (1.0.0) rails (~> 7) GEM diff --git a/lib/rails/buddy/version.rb b/lib/rails/buddy/version.rb index 2c73c63..6e797ed 100644 --- a/lib/rails/buddy/version.rb +++ b/lib/rails/buddy/version.rb @@ -2,6 +2,6 @@ module Rails module Buddy - VERSION = '0.1.0' + VERSION = '1.0.0' end end diff --git a/rails-buddy.gemspec b/rails-buddy.gemspec index 4605eb3..38b5d42 100644 --- a/rails-buddy.gemspec +++ b/rails-buddy.gemspec @@ -12,7 +12,8 @@ Gem::Specification.new do |spec| spec.description = 'A development gem to monitor your rails application.' spec.license = 'MIT' - spec.metadata['homepage_uri'] = spec.homepage + spec.metadata['homepage_uri'] = spec.homepage + spec.metadata['changelog_uri'] = "#{spec.homepage}/CHANGELOG.md" spec.files = Dir.chdir(File.expand_path(__dir__)) do Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md'].reject do |file|