Skip to content

Commit cdb9530

Browse files
chore: do not use literals for version in type definitions (#109)
1 parent a9a77bd commit cdb9530

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,14 @@ The underlying REST API documentation can be found on [developer.tryfinch.com](h
1414

1515
To use this gem, install via Bundler by adding the following to your application's `Gemfile`:
1616

17+
<!-- x-release-please-start-version -->
18+
1719
```ruby
1820
gem "finch-api", "~> 0.1.0.pre.alpha.5"
1921
```
2022

23+
<!-- x-release-please-end -->
24+
2125
To fetch an initial copy of the gem:
2226

2327
```sh

rbi/lib/finch_api/version.rbi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# typed: strong
22

33
module FinchAPI
4-
VERSION = "0.1.0.pre.alpha.5"
4+
VERSION = T.let(T.unsafe(nil), String)
55
end

sig/finch_api/version.rbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module FinchAPI
2-
VERSION: "0.1.0.pre.alpha.5"
2+
VERSION: String
33
end

0 commit comments

Comments
 (0)