Skip to content

Commit

Permalink
Update v3 release with actual date in sem-ver-me.js
Browse files Browse the repository at this point in the history
Projected release date for v3.0.0 had previously been September 7, 2023. After extensive testing, release of this major update was postponed until February 4, 2024. The current commit reflects this change delay to achieve higher accuracy for current and future scheduled releases.
  • Loading branch information
Jonqora authored Feb 17, 2024
1 parent e783b90 commit 5bfdc77
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/sem-ver-me.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ CONFIG | set [Y, M, D] values with updateSpeed:
- Patch version increments daily or every D days */

/*======== Config ========*/
const startDate = new Date("September 7, 2021");
const startRelease = 1; //Major version number corresponding to above date
// const startDate = new Date("September 7, 2021");
const startDate = new Date("February 4, 2024");
const startRelease = 3; //Major version number corresponding to above date
const updateSpeed = [1, 1, 3]; //Larger numbers = slower updates


Expand Down

0 comments on commit 5bfdc77

Please sign in to comment.