From 4c0c1ff44367eb759b43c2dd0a1402a317d1b05b Mon Sep 17 00:00:00 2001 From: Greg Tunink Date: Tue, 4 Jun 2024 15:18:33 -0500 Subject: [PATCH] Patch release v1.0.5 with Ruby 3.1.6, Rails 6.1.7 --- config/config.example.yml | 5 +++-- config/initializers/version.rb | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/config/config.example.yml b/config/config.example.yml index a06b13c..8cd7e25 100644 --- a/config/config.example.yml +++ b/config/config.example.yml @@ -1,12 +1,13 @@ default: &default metadata: # api metadata / description - api_updated: "TODO 2017" + api_updated: "2024-06-04" contact: "cdrhdev@unl.edu" description: "API to access all public Center for Digital Research in the Humanities resources" documentation: "https://cdrhapi.unl.edu/docs" - license: "TODO" + license: "MIT License" terms_of_service: "TODO" + version: 1.0.5 settings: # regex for (encoded) characters separating filters: | diff --git a/config/initializers/version.rb b/config/initializers/version.rb index b17ba8e..9993f0d 100644 --- a/config/initializers/version.rb +++ b/config/initializers/version.rb @@ -1,5 +1,5 @@ module Api class Application < Rails::Application - VERSION = "1.0.4" + VERSION = "1.0.5" end end