-
Notifications
You must be signed in to change notification settings - Fork 93
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
Please publish a 1.0.0 #75
Comments
+1 |
In Node.js v5.10.0 they included the So my plan is to wait till the file counterparts will arrive as well and then I will refactor the code to use the new methods in the new Node.js versions and then publish the 1.0.0. |
@raszi I don't know whether using the node provided API is a good choice: nodejs/node#6142 (comment) Some users might have different use cases that might break with the naming scheme implemented in glibc and for which the node provided API is a small wrapper for. |
Even if the internal implementation changes, the external API is the same. That's fine for a 1.0.0 release. |
Yes |
@silkentrance No problems with me. Supporting current LTS & LTS-1 is a good policy given the predictable release cadence. Users stuck on <4.x can still depend on node-tmp 0.x. |
@raszi How about a 1.0.0 release, dropping support for node < 4.0.0. I'd be willing to revise the code and test cases where necessary and update all dependencies accordingly. |
Well, I would love to keep the package as much backward compatible as possible but it seems that it is harder and harder day by day. My other pr with the coverage #107 is failing because the tools are not supporting Node below Dropping |
Why isnt it enough for users on older nodes use older versions of this package? |
@timoxley well yes, that is an option. |
Regardless of whether or not you’re settled on a good API or not, as long as you plan to have a stable API at all and release bugfix releases, you need to bump up to 1.0.0. If you want to get a perfect API, you can always do that in 2.x. You don’t have to break API before bumping the major ;-). If you do Because |
Unfortunately, as discussed at raszi/node-tmp#75 , the tmp dependency only has an 0.x release. This means this library has to manually bump and release for every upstream release to get fixes and improvements.
@raszi since the package is now fairly stable, including also the fix for #115, I'd like to propose the following:
I know that there is a problem with npmjs.org that will replace the most current release by the latest one being published, but they might have a solution for that already. What do you think? |
Sounds like a good plan. I need to review again what is the usage of the old node versions because just for the sake of simplicity at our end I don't want to sacrifice the experience of users on old node versions. |
I have asked over at npmjs whether they gather data such as to which node version is used when installing the required packages. However, they do not seem to collect such data. So sad 🎺 |
A 0.1.0 version has been committed to the repository. |
For builds run on appveyor, support for node < 4.0.0 has already been dropped. Working on making this happen before new years' eve. |
for reference #108 |
This has been succeeded by #158, follow the discussion there. |
I think this has reached 1.0.0-worthy.
The current 0.0.x versioning is also a slight PITA because
npm install --save tmp
will save an exact version, rather than using the user's designated semver prefix e.g.~
or^
.The text was updated successfully, but these errors were encountered: