-
-
Notifications
You must be signed in to change notification settings - Fork 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
Add !-postfix to modifying methods, prefer to extends Base methods. #232
Conversation
…ther than define new names.
CI failures related to #233. The issue is that the
Any preferences? :^) |
Yeah, i think this is the sanest thing to do. It's just keeping the existing overload that was already there. Mark it deprecatd, with a note that it's only there until we drop 0.7 support, something like:
And then drop 0.7 in a non-patch release, later. :) Does that sound good to you? |
Question: can we just drop the old methods and make a non-patch release? Do we need to keep things backwards compatible? Or do you think that should wait for something like a |
Moreso the latter. There's two things I'm thinking about.
|
|
||
# Deprecated (and misspelled?) |
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.
haha 😛 Maybe this was written by a british english speaker? Perhaps Shashi? I know he wrote a lot of this originally, right?
Cool, yeah, those are good points! :) Love it. Thanks for tackling this! |
Think I resolved most of your comments, will give another look. One think I'd like some input on is whether or not we should rename some methods to use underscores instead of smooshing (e.g. The reason for this was that I was struggling to find a name for |
Yeah, i think adding underscores is fine. I don't really have much preference, but my opinion leans more towards underscores than not. For example, even |
This should™ be fully backwards compatible.
I didn't want to add deprecation messages because that would just be cluttering.
Closes #161.