-
Notifications
You must be signed in to change notification settings - Fork 161
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
Publish v0.16.0 #69
Comments
Actually I'm a bit blocked now in one of my own projejcts! What do you think, could you help a brother out and publish |
Until he's published it, my suggestion would be to pull it in and use crates.io-patch |
@ahmed-masud Building locally is fine with But are you sure that one can publish a crate to Crates.io if the dependency is a replace or patch pointing at a git branch or revision? I just couldn't get publishing working. I've tried all kinds of permutations, like:
and
|
Hi Sebastian,
I'm hoping to get to this as soon as I get back from my honeymoon :)
Sorry for the delay. It's been a busy few weeks 😅
Get Outlook for Android<https://aka.ms/ghei36>
…________________________________
From: Sebastian Mandrean <notifications@github.com>
Sent: Tuesday, September 3, 2019 4:52:40 AM
To: Peternator7/strum <strum@noreply.github.com>
Cc: Glotfelty, Peter H. <glotfelty.2@osu.edu>; Mention <mention@noreply.github.com>
Subject: Re: [Peternator7/strum] Publish v0.16.0 (#69)
@ahmed-masud<https://github.com/ahmed-masud> Building locally is fine with git + rev. I've also gotten [replace] and [patch.crates-io] working locally (separately)
But are you sure that one can publish a crate to Crates.io if the dependency is a replace or patch pointing at a git branch or revision?
I just couldn't get publishing working. I've tried all kinds of permutations, like:
[dependencies]
...
strum = "0.15.0"
strum_macros = "0.15.0"
url = "2.1.0"
[replace]
"strum:0.16.0" = { git = "https://github.com/Peternator7/strum", branch = "refactor" }
"strum_macros:0.15.0" = { git = "https://github.com/Peternator7/strum", branch = "refactor" }
and
[dependencies]
...
strum = "0.15.0"
strum_macros = "0.15.0"
[replace]
"strum:0.16.0" = { git = "https://github.com/Peternator7/strum", branch = "refactor" }
"strum_macros:0.15.0" = { git = "https://github.com/Peternator7/strum", branch = "refactor" }
[dependencies]
...
strum = "0.15.0"
strum_macros = "0.15.0"
[patch.crates-io]
"strum" = { git = "https://github.com/Peternator7/strum", branch = "refactor" }
"strum_macros" = { git = "https://github.com/Peternator7/strum", branch = "refactor" }
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub<#69?email_source=notifications&email_token=ABZSKRZ5INU3FCYC2UNJFQDQHYQVRA5CNFSM4IRKLC4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5XP6RA#issuecomment-527368004>, or mute the thread<https://github.com/notifications/unsubscribe-auth/ABZSKR3GYYURITALXICGW23QHYQVRANCNFSM4IRKLC4A>.
|
Awesome 😄 Enjoy your honeymoon @Peternator7 |
Enjoy your honeymoon! (Found this issue when I wanted to ask for a new release, too. Also: If you need someone to help you maintain this crate, let me know!) |
@mandrean , Version 0.16 is published :) |
Awesome! Thanks 😄 |
Hi,
Would be awesome if you could publish a
v0.16.0
of Strum tohttps://crates.io/crates/strum
, as the latest version there isv0.15.0
from March, which for example doesn't haveEnumVariantNames
(#56)Right now I have to do this to get
EnumVariantNames
in my project:(Also would be nice with tags in Github that corresponds to the releases on Crates.io.)
Thanks!
The text was updated successfully, but these errors were encountered: