-
Notifications
You must be signed in to change notification settings - Fork 11
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
1.0 checklist #24
Comments
I'd also try to think of a better name for And maybe to re-thing the
|
Argh, its excruciating, C# uses |
The PRs I just opened address all of the remaining specific concerns. After that is just making sure that we're happy with our state against the API guidelines, and then we're good to release. (Though it may be still worth it to release as 0.99, so if we find anything while updating rowan and rust-analyzer for real, we still have the flexibility to make more changes.) |
I do feel that we should do |
For visibility, the API guidelines I haven't checked off yet:
I think:
And the final concern: mark text-unit as deprecated and point users at text-size. |
TBH, I feel like only the changelog would add significant value here. It's not like But it probably makes sense to add a top-level doc along the lines of "unless you plan to pervasively use and store |
ping @CAD97 what are our further action items here? I think just migrating rowan and rust-analyzer to 0.99? Would be willing to try this out? |
gentle re-ping @CAD97 (: |
Concrete things I'd like to see:
|
I believe the cumulative value of the transition table in the docs over the lifetime will be negative, so yeah, we should put it into a changelog (or just remove altogether, I think it's intuitive enough) |
rowan patch: CAD97/rowan#3 Notes, again:
|
Adding glob based parameterized tests into insta ended up being easier than I initially expected and ran into the first time: mitsuhiko/insta#109 |
I am not sure what are you trying to say here, but, if you don't feel like updating the tests, I certainly can do this myself! |
Mainly that there are a number of tests (read: every single It'd be awesome to get the It would have saved me a lot of effort had the tests been using insta already. (Now if you do want to help make the patch better, separating the actual code changes from the test updates really should be done.) I'm happy publishing 0.99 once we have moved the text_unit translation tables to a changelog and added "when to use this" documentation. (Both of which I'd rather you write tbh :stuck_out_tounge: ) |
Aha, there's indeed a way: https://github.com/rust-analyzer/rust-analyzer/blob/779555c1beac90f633c01a773558c4007c99c97f/crates/test_utils/src/lib.rs#L398 |
Published 0.99 |
cc @BurntSushi, this is tangentially related to your work in text search area: We publishing the 1.0 crate with "vocabulary" types for text offsets ( No action is expected, this is just to let you know that the thing exists :) |
@CAD97 is some work here blocked on me? Are we ready to basically just swithc rust-analyzer to this? |
Yeah, the remaining steps are to update r-a to the version of rowan using 0.99, then assuming everything works, publish 1.0, update rowan to use it, update r-a to use that version of rowan. |
Good, I'll do this now |
1.0 is published! |
This is a meta issue tracking concerns that have been raised and should be addressed before publishing a 1.0 version. Once all of the checkboxes here are checked, we should be good for a 1.0 release.
TextSize::of
use APIT or an explicit generic? (IOW, shouldTextSize::of::<&str>(s)
be allowed? Using this form would allow deref coercion to kick in.)TextSized
?TextSized
get a "uglier" name, as it is not meant to be used directly? (AndTextSized
/TextSize
are very close names.)LenTextSize::len_text_size
has been proposed.TextRange::empty(offset)
orTextRange::empty()
(and thusTextRange::empty() + offset
to get the offset behavior)?API Guidelines
as_
,to_
,into_
conventions (C-CONV)iter
,iter_mut
,into_iter
(C-ITER)Copy
,Clone
,Eq
,PartialEq
,Ord
,PartialOrd
,Hash
,Debug
,Display
,Default
From
,AsRef
,AsMut
(C-CONV-TRAITS)FromIterator
andExtend
(C-COLLECT)Serialize
,Deserialize
(C-SERDE)Send
andSync
where possible (C-SEND-SYNC)Hex
,Octal
,Binary
formatting (C-NUM-FMT)R: Read
andW: Write
by value (C-RW-VALUE)?
, nottry!
, notunwrap
(C-QUESTION-MARK)readme, keywords, categories
Deref
andDerefMut
(C-DEREF)bool
orOption
(C-CUSTOM-TYPE)bitflags
, not enums (C-BITFLAG)Debug
(C-DEBUG)Debug
representation is never empty (C-DEBUG-NONEMPTY)The text was updated successfully, but these errors were encountered: