Skip to content

Commit

Permalink
gem: bump version to 0.0.2 (#4)
Browse files Browse the repository at this point in the history
* gem: bump version to 0.0.2

* gem: bump version to 0.0.2
  • Loading branch information
q9f authored Dec 17, 2024
1 parent 9c47e51 commit 7578f4d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
### Frontier.rb v0.0.2

- Gem: bump version to 0.0.2 ([#4](https://github.com/q9f/frontier.rb/pull/4))

### Frontier.rb v0.0.1

- Docs: add changelog ([#2](https://github.com/q9f/frontier.rb/pulls/2))
- Ci: enable github actions ([#1](https://github.com/q9f/frontier.rb/pulls/1))
- Docs: add changelog ([#2](https://github.com/q9f/frontier.rb/pull/2))
- Ci: enable github actions ([#1](https://github.com/q9f/frontier.rb/pull/1))
- Examples: add distance script
- Examples: add progress tracking
- Docs: clarify limitations
Expand Down
4 changes: 2 additions & 2 deletions examples/pathfinder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
c_id += 1
prog += 1
perc = prog.to_f / ALL_STARS.length.to_f * 100.0
print "Mapping all star systems ... #{'%3.2f' % perc}%\r"
print "Mapping all star systems ... #{"%3.2f" % perc}%\r"
end
print "Mapping all star systems ... done.\n"

Expand All @@ -56,7 +56,7 @@
end
prog += 1
perc = prog.to_f / (ALL_STARS.length.to_f * ALL_STARS.length.to_f) * 100.0
print "Building universe graph ... #{'%3.2f' % perc}%\r"
print "Building universe graph ... #{"%3.2f" % perc}%\r"
end
end
print "Building universe graph ... done.\n"
Expand Down
2 changes: 1 addition & 1 deletion lib/frontier/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module Frontier
MINOR = 0.freeze

# Defines the patch version of the {Frontier} module.
PATCH = 1.freeze
PATCH = 2.freeze

# Defines the version string of the {Frontier} module.
VERSION = [MAJOR, MINOR, PATCH].join(".").freeze
Expand Down
4 changes: 2 additions & 2 deletions spec/frontier_spec.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
require "spec_helper"

describe Frontier do
it "0.0.1 works" do
it "0.0.2 works" do

# placeholder to set up spec in future
expect(Frontier::VERSION).to eq "0.0.1"
expect(Frontier::VERSION).to eq "0.0.2"
end
end

0 comments on commit 7578f4d

Please sign in to comment.