Skip to content

Commit

Permalink
Bump version v0.2.0 (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
gridanjbf authored Jun 3, 2024
1 parent 2981bb9 commit 2176a58
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
12 changes: 12 additions & 0 deletions lib/sharepoint/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# frozen_string_literal: true

module Sharepoint
module Version
MAJOR = 0
MINOR = 2
PATCH = 0
BUILD = nil

VERSION = [MAJOR, MINOR, PATCH, BUILD].compact.join('.').freeze
end
end
5 changes: 4 additions & 1 deletion sharepoint.gemspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# frozen_string_literal: true

$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'sharepoint/version'

Gem::Specification.new do |gem|
gem.name = 'sharepoint'
gem.version = '0.1.0'
gem.version = Sharepoint::Version::VERSION
gem.authors = ['Antonio Delfin']
gem.email = ['a.delfin@ifad.org']
gem.description = 'Ruby client to consume Sharepoint services'
Expand Down

0 comments on commit 2176a58

Please sign in to comment.