Skip to content

Commit a5ea5f1

Browse files
author
Alena Kastsiukavets
committed
Change Agent versioning schema
# Why is this change needed? Build version should be included in major version number since it is impossible to have predicted version number for release. Redo Agent versioning in [standard ruby convention](https://guides.rubygems.org/patterns/) # How does it address the issue? Set version number as 1.1.0 according to ruby doc. We will retrieve information about version from `gemspec` file, so remove version from `gemspec` file name # How was this tested ? bb version https://rally1.rallydev.com/#/377133917144d/detail/userstory/390428686488 cr https://code.amazon.com/reviews/CR-26030025 # Conflicts: # Config
1 parent 4900112 commit a5ea5f1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
Gem::Specification.new do |spec|
22
spec.name = 'aws_codedeploy_agent'
3-
spec.version = 0.1
3+
spec.version = '1.1.0'
44
spec.summary = 'Packages AWS CodeDeploy agent libraries'
55
spec.description = 'AWS CodeDeploy agent is responsible for doing the actual work of deploying software on an individual EC2 instance'
66
spec.author = 'Amazon Web Services'
77
spec.files = Dir['{lib,bin,conf,vendor}/**/*']
88
spec.homepage = "https://github.com/aws/aws-codedeploy-agent"
99
spec.bindir = ['bin']
1010
spec.require_paths = ['lib']
11+
spec.license = 'Apache-2.0'
12+
spec.required_ruby_version = '~> 2.0'
1113

1214
spec.add_dependency('gli', '~> 2.5')
1315
spec.add_dependency('json_pure', '~> 1.6')

0 commit comments

Comments
 (0)