Skip to content

Commit

Permalink
Merge pull request #1128 from ember-learn/6.0
Browse files Browse the repository at this point in the history
Ember 6.0 release
  • Loading branch information
mansona authored Dec 17, 2024
2 parents 6f792b0 + 7d0a88b commit 16e33ad
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
7 changes: 6 additions & 1 deletion app/controllers/releases/lts.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ export default class ReleasesLtsController extends Controller {
// promotion date should be the day of the release of the following ember minor version
// you can run `npm info ember-source time` to see a list
emberLtsReleases = [
{
version: '5.12',
promotionDate: new Date('2024-09-30'),
isActive: true,
},
{
version: '5.8',
promotionDate: new Date('2024-06-03'),
Expand All @@ -12,7 +17,7 @@ export default class ReleasesLtsController extends Controller {
{
version: '5.4',
promotionDate: new Date('2023-12-11'),
isActive: true,
isActive: false,
},
{
version: '4.12',
Expand Down
4 changes: 2 additions & 2 deletions data/project/ember/beta.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ filter:
- /ember\./
- /ember-template-compiler/
repo: emberjs/ember.js
lastRelease: 6.0.0-beta.1 # Manually update See https://libraries.io/npm/ember-source throughout
lastRelease: 6.1.0-beta.1 # Manually update See https://libraries.io/npm/ember-source throughout
channel: beta
date: 2024-09-30 # Manually update, get date for `initialVersion`
date: 2024-11-12 # Manually update, get date for `initialVersion`
changelogPath: CHANGELOG.md
debugFileName: .debug.js
ignoreFiles:
Expand Down
4 changes: 2 additions & 2 deletions data/project/ember/lts.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ filter:
- /ember\./
- /ember-template-compiler/
repo: emberjs/ember.js
lastRelease: 5.8.0
lastRelease: 5.12.0
channel: lts
date: 2024-04-15
date: 2024-09-30
changelogPath: CHANGELOG.md
debugFileName: .debug.js
ignoreFiles:
Expand Down
4 changes: 2 additions & 2 deletions data/project/ember/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ filter:
- /ember\./
- /ember-template-compiler/
repo: emberjs/ember.js
lastRelease: 5.12.0 # Manually update, see https://libraries.io/npm/ember-source throughout
lastRelease: 6.0.0 # Manually update, see https://libraries.io/npm/ember-source throughout
channel: release
date: 2024-09-30 # Manually update, is today's date
date: 2024-11-12 # Manually update, is today's date
changelogPath: CHANGELOG.md
debugFileName: .debug.js
ignoreFiles:
Expand Down

0 comments on commit 16e33ad

Please sign in to comment.