-
Notifications
You must be signed in to change notification settings - Fork 139
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
Release plan for 0.13 #357
Comments
We'll hold off on #269 it might be useful to keep |
I'd like to communicate who's going to be working on which tickets so we don't start stomping on each other's feet. I'll can tackle the #36 now, since I recently had to deal with those semantics. I already mentioned it on a ticket, but I'll be happy to do the split described in #355 With regards to #276 I could take care of it too, since I was involved in that discussion and also fixed the original issue with slice in #257, however it would be great to get another pair of eye on the issue, so maybe someone else can pick it out. #306 I suggested a solution: #301 (comment) which is the approach I've taken in massiv, so if someone would like to implement and document it, that'd be great. With regards to exporting constructors, I'd go for adding these modules: module Data.Vector.Internal
module Data.Vector.Primitive.Internal
module Data.Vector.Storable.Internal
module Data.Vector.Unboxed.Internal that have An easy way would be to simply re-export constructors from there or the hard way of moving constructors with all the instances into those module in order to avoid orphans. Former seems a bit less intrusive. This one is also up for the taking. |
On a second thought it might be a good idea to move all of the unsafe functions into their own modules, which would also include constructors. module Data.Vector.Unsafe
module Data.Vector.Primitive.Unsafe
module Data.Vector.Storable.Unsafe
module Data.Vector.Unboxed.Unsafe I do think that it would be a good way to promote distinction between safe and unsafe function usage. I never liked that functions like However, this would be a serious breaking change, so we would have to do it over multiple major releases. @Shimuuar and @Bodigrim if that is something you think is worthwhile to discuss we could start a separate issue and possibly kickoff a discussion on libraries? |
Please no %)
Yes, such change deserves a discussion on libraries and CLC. |
I like idea of Then there's question of finding all unsafe functions. Some seemingly benign functions will happily trash memory given incorrect inputs (see #118) as example |
@Shimuuar I've started a new issue for this topic: #361
This means that the functions is unsafe and should be named with |
It has been over a year since we planned a major release, I think it is time we get it done. It is ok if we can't get all of those features we wanted in, a lot has been accomplished sine 0.12 version. I am setting a timeline two weeks from today to cut a release. @Shimuuar and @Bodigrim please speak up if you have any objections. |
No objections from my side. |
Strongly agree. 0.13 is long overdue |
I've prepared a release here in #437 One thing that was not checked in the release plan was the exporting of constructors. I think this problem is solved now:
I think we are good for a release. If no one has any comments I'll merge the PR and make a release this week. |
vector-0.13.0.0 is out. |
Here is list of issues that need to be fixed before 0.13 release. I only list breaking changes and omit things that could be added to 0.13.1, etc.
The text was updated successfully, but these errors were encountered: