Release version 0.1.0
jamesmunns opened this issue · 6 comments
It looks like the release of this crate is blocked by @japaric not having crate ownership/permissions to the serde-json-core crate.
@dtolnay could you please grant Jorge permissions to the repo on crates.io so this can be released?
EDIT: Or alternatively, could you (dtolnay) please publish the current version of the crate? Though that would leave this crate in a similar version in the future.
I added him as owner when I uploaded 0.0.1. It should be in his pending invites:
https://crates.io/me/pending-invites
I was able to work around this with a [patch] in my manifest to get this compiling on stable for the time being:
[dependencies]
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde-json-core = "0.0.1"
[patch.crates-io]
serde-json-core = { git = "https://github.com/japaric/serde-json-core" }
Just a +1 as I fell over this one today. Thanks @keithduncan for the work-around.
Hey @japaric, would it be possible to release this?
As a heads up, I needed this for a project (where I didn't want a patch section), so I have forked the repository and released the 0.1.0 changes, as well as some 2018 edition MaybeUninit and dependency updates:
I don't hope to keep this as a permanent fork, but I know @japaric is busy in the mean time. This might be acceptable for some temporarily.