-
Notifications
You must be signed in to change notification settings - Fork 112
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
Support for rocket v0.5.0 #132
Conversation
cc: @ralpha |
Thanks for the MR :D I have seen the updates pop up in my inbox over the last few days. |
Well, Rocket 0.5 just got released! |
Should be an easy adjustment. There're practically no logic changes between rc.4 and the actual 0.5 release. |
Was actually just going to comment that! I can't wait for all my favorite Rocket plugins to work with |
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.
Just one thing that I spotted, but will fix that when updating dependencies.
rocket_dyn_templates = { version = "=0.1.0-rc.4", optional = true } | ||
rocket_db_pools = { version = "=0.1.0-rc.4", optional = true } | ||
rocket_dyn_templates = { version = "=0.1.0", optional = true } | ||
rocket_db_pools = { version = "=0.1.0", optional = true } | ||
|
||
[dev-dependencies] | ||
rocket_sync_db_pools = { version = "0.1.0-rc.3", features = ["diesel_sqlite_pool"] } |
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 guess this one should be set to "0.1.0" too.
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.
Yup, forgot about it :(
Thanks! |
Haha, did not expect v0.5 to come out. 😅 Been a a while since we have been on a rc 😄 |
Thanks for the MR, will do some more updates, maintenance, tests and other changes before I publish to crates.io |
No description provided.