Skip to content

Commit

Permalink
Add reissue rake tasks and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
saturnflyer committed Jul 9, 2024
1 parent f94a106 commit 886478b
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
17 changes: 12 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
# Change log

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased
### Added:
## [0.1.1] - Unreleased

### Added

- Support for Importmaps
- `reissue` gem for managing releases

### Fixed:
### Fixed

- Alter newest scope to properly return a relation limited to 1 record
- Update ensure_service to not overwrite existing connection_info

## [0.1.0] - 2024-05-08
### Added:
- Initial implimentation

###

- Added:
- Initial implimentation
7 changes: 7 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,10 @@ Rake::TestTask.new do |t|
end

task default: ["db:setup", "db:migrate", "app:environment", :test] # Modify default task

require "reissue/gem"

Reissue::Task.create :reissue do |task|
# Required: The file to update with the new version number.
task.version_file = "lib/close_encounters/version.rb"
end
1 change: 1 addition & 0 deletions test/dummy/db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@
t.datetime "updated_at", null: false
t.index ["name"], name: "index_close_encounters_participant_services_on_name", unique: true
end

end

0 comments on commit 886478b

Please sign in to comment.