allan2 / dotenvy

A well-maintained fork of the dotenv crate
MIT License
664 stars 40 forks source link

Bump minor version for next release #13

Closed allan2 closed 2 years ago

allan2 commented 2 years ago

from_read was added in 0.15.2.

The minor version should have been incremented instead of the patch version, i.e. 0.15.2 should have been 0.16.

Thanks @mkmik https://github.com/influxdata/influxdb_iox/pull/5461

Dylan-DPC commented 2 years ago

Thanks. Semver works differently in pre 1.0 range: 0.x is often considered the major while the next (0.*.y) is often considered the minor release

new features can be added in "patch" (i.e. minor in pre 1.0 land) versions as long as no breaking change is involved

if you are dependent on a certain version of a dependency you need to depend on that version and higher

mkmik commented 2 years ago

TIL thanks

allan2 commented 2 years ago

@Dylan-DPC, thanks for clarifying.

Closing