Skip to content

Commit

Permalink
feat: release 11.0.0 (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackbaud-SteveBrush authored Sep 11, 2024
1 parent 7ce1fb3 commit 6c6b0bb
Show file tree
Hide file tree
Showing 8 changed files with 4,979 additions and 4,564 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- main
env:
# Set to 'alpha', 'beta', or 'rc' to create a prerelease.
PRERELEASE: 'alpha'
PRERELEASE: 'false'
MAJOR_VERSION: 11
jobs:
release:
Expand Down Expand Up @@ -59,7 +59,8 @@ jobs:
pull-request-title-pattern: 'chore: release ${version}'
labels: 'autorelease ${{ github.ref_name }}: pending'
release-labels: 'autorelease ${{ github.ref_name }}: tagged'
release-as: '${{ steps.next-release.outputs.next-release }}'
# release-as: '${{ steps.next-release.outputs.next-release }}'
release-as: '11.0.0'
prerelease: ${{ env.PRERELEASE != 'false' }}
draft-pull-request: true
include-v-in-tag: false
Expand Down
8 changes: 4 additions & 4 deletions libs/clipboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
},
"homepage": "https://github.com/blackbaud/stache#readme",
"peerDependencies": {
"@angular/common": "^18.1.2",
"@angular/core": "^18.1.2",
"@skyux/core": "^11.0.0-alpha.6",
"@skyux/i18n": "^11.0.0-alpha.6"
"@angular/common": "^18.2.3",
"@angular/core": "^18.2.3",
"@skyux/core": "^11.0.0",
"@skyux/i18n": "^11.0.0"
},
"dependencies": {
"tslib": "^2.6.3"
Expand Down
8 changes: 4 additions & 4 deletions libs/code-block/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
},
"homepage": "https://github.com/blackbaud/stache#readme",
"peerDependencies": {
"@angular/common": "^18.1.2",
"@angular/core": "^18.1.2",
"@angular/platform-browser": "^18.1.2",
"@angular/common": "^18.2.3",
"@angular/core": "^18.2.3",
"@angular/platform-browser": "^18.2.3",
"@blackbaud/skyux-lib-clipboard": "0.0.0-PLACEHOLDER",
"@skyux/i18n": "^11.0.0-alpha.6"
"@skyux/i18n": "^11.0.0"
},
"dependencies": {
"prismjs": "1.29.0",
Expand Down
8 changes: 4 additions & 4 deletions libs/media/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
},
"homepage": "https://github.com/blackbaud/stache#readme",
"peerDependencies": {
"@angular/common": "^18.1.2",
"@angular/core": "^18.1.2",
"@angular/platform-browser": "^18.1.2",
"@skyux/i18n": "^11.0.0-alpha.6"
"@angular/common": "^18.2.3",
"@angular/core": "^18.2.3",
"@angular/platform-browser": "^18.2.3",
"@skyux/i18n": "^11.0.0"
},
"dependencies": {
"tslib": "^2.6.3"
Expand Down
20 changes: 10 additions & 10 deletions libs/stache/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@
}
},
"peerDependencies": {
"@angular/cli": "^18.1.2",
"@angular/common": "^18.1.2",
"@angular/core": "^18.1.2",
"@angular/platform-browser": "^18.1.2",
"@angular/router": "^18.1.2",
"@skyux/config": "^11.0.0-alpha.6",
"@skyux/core": "^11.0.0-alpha.6",
"@skyux/i18n": "^11.0.0-alpha.6",
"@skyux/layout": "^11.0.0-alpha.6",
"@skyux/lookup": "^11.0.0-alpha.6"
"@angular/cli": "^18.2.3",
"@angular/common": "^18.2.3",
"@angular/core": "^18.2.3",
"@angular/platform-browser": "^18.2.3",
"@angular/router": "^18.2.3",
"@skyux/config": "^11.0.0",
"@skyux/core": "^11.0.0",
"@skyux/i18n": "^11.0.0",
"@skyux/layout": "^11.0.0",
"@skyux/lookup": "^11.0.0"
},
"dependencies": {
"lodash.get": "4.4.2",
Expand Down
2 changes: 1 addition & 1 deletion libs/stache/schematics/ng-add/ng-add.schematic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ export default function ngAdd(): Rule {
return async (_tree, context) => {
context.addTask(new NodePackageInstallTask());

return chain([installEssentialSkyUxPackages('^11.0.0-alpha.6')]);
return chain([installEssentialSkyUxPackages('^11.0.0')]);
};
}
Loading

0 comments on commit 6c6b0bb

Please sign in to comment.