Skip to content

Commit

Permalink
v0.10.0 (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewmcgarvey committed Apr 3, 2021
1 parent 89dc447 commit 5fe292f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion shard.yml
@@ -1,5 +1,5 @@
name: selenium
version: 0.9.1
version: 0.10.0
authors:
- Matthew McGarvey <matthewmcgarvey14@gmail.com>
crystal: ">= 0.35.0, < 2.0.0"
Expand Down
12 changes: 12 additions & 0 deletions spec/version_spec.cr
@@ -0,0 +1,12 @@
require "./spec_helper"

describe Selenium do
it "has version in sync with shard.yml" do
content = File.open("shard.yml") do |file|
file.gets_to_end
end

version = /version\:(.*?)\n/.match(content).not_nil![1].strip
version.should eq Selenium::VERSION
end
end
2 changes: 1 addition & 1 deletion src/selenium.cr
Expand Up @@ -13,5 +13,5 @@ require "./selenium/safari/**"
require "./selenium/helpers/**"

module Selenium
VERSION = "0.9.1"
VERSION = "0.10.0"
end

0 comments on commit 5fe292f

Please sign in to comment.