Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #44 from takkii/develop
Browse files Browse the repository at this point in the history
Update.
  • Loading branch information
takkii authored Sep 11, 2024
2 parents 97774a0 + ad96214 commit acb4e5f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions lib/frame/version.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# frozen_string_literal: true

require 'date'

# nyasocom_frame version = x.x.x-xxxx.xx.xx
module Frame
# latest version = 1.x.x-date.today
VERSION = '1.0.9-2024.09.10'.freeze
frame_version = '1.0.9'
t = Date.today
build_day = t.strftime('%Y.%m.%d')
VERSION = "#{frame_version}-#{build_day}".freeze
end

GC.compact
Expand Down

0 comments on commit acb4e5f

Please sign in to comment.