-
Notifications
You must be signed in to change notification settings - Fork 3
Update to nim 2 x #75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Signed-off-by: Arnaud <[email protected]>
Signed-off-by: Arnaud <[email protected]>
Signed-off-by: Arnaud <[email protected]>
Signed-off-by: Arnaud <[email protected]>
…pointer Signed-off-by: Arnaud <[email protected]>
Signed-off-by: Arnaud <[email protected]>
421c0c3
to
a969b97
Compare
datastore.nimble
Outdated
"leveldbstatic >= 0.1.6", | ||
"stew", | ||
"unittest2" | ||
"sqlite3_abi == 3.47.0.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do other minor versions break the build? eg
"sqlite3_abi == 3.47.0.0", | |
"sqlite3_abi >= 3.47.0.0 & < 4.0.0.0", |
datastore.nimble
Outdated
"stew", | ||
"unittest2" | ||
"sqlite3_abi == 3.47.0.0", | ||
"leveldbstatic >= 0.2.0 & < 1.0.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think a lot of nim libs use the second digit as a major version indicator 🤷 It should not be the case imo.
"leveldbstatic >= 0.2.0 & < 1.0.0", | |
"leveldbstatic >= 0.2.0 & < 0.3.0", |
datastore.nimble
Outdated
"stew >= 0.2.0", | ||
"unittest2 >= 0.2.3" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"stew >= 0.2.0", | |
"unittest2 >= 0.2.3" | |
"stew >= 0.2.0 & < 0.3.0", | |
"unittest2 >= 0.2.3 & < 0.3.0" |
ed85482
to
f9deb5a
Compare
This PR contains the changes to move to Nim 2.0. It includes dependency updates and one fix for trying to set nil to a distinct pointer, which is no longer supported by Nim 2.0:
7e053e5