Skip to content

Commit

Permalink
Merge pull request #903 from zyfra/feat/release_3.3.0
Browse files Browse the repository at this point in the history
fix: up to versions
  • Loading branch information
ZurabDev authored Oct 26, 2023
2 parents 2fd0a27 + dc5faeb commit 5e09636
Show file tree
Hide file tree
Showing 65 changed files with 114 additions and 114 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Dependencies:
```
➜ npm ls @prizm-ui/components
@prizm-ui/components 2.3.0
@prizm-ui/components 2.4.0
```

```
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ v16.13.0

Dependencies:

`@prizm-ui/components 2.3.0`
`@prizm-ui/components 2.4.0`

Операционная ситема:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/beta-publish-ng14.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Set up environment variables
run: |
last_draft_version=$(
(npm view @prizm-ui/components versions --tag ng14beta --json 2>/dev/null || echo '1.6.0-ng14beta.0') | jq '([.[] | select(startswith("1.6.0-ng14beta"))] | last // "1.6.0-ng14beta.0")' 2>/dev/null || echo '1.6.0-ng14beta.0'
(npm view @prizm-ui/components versions --tag ng14beta --json 2>/dev/null || echo '1.7.0-ng14beta.0') | jq '([.[] | select(startswith("1.7.0-ng14beta"))] | last // "1.7.0-ng14beta.0")' 2>/dev/null || echo '1.7.0-ng14beta.0'
)
echo "LAST_DRAFT_VERSION=${last_draft_version}" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-publish-ng14.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Set up environment variables
run: |
last_v1_version=$(
npm view @prizm-ui/components versions --tag ng14 --json | jq '([.[] | select(startswith("1.6.0-v1"))] | last // "1.6.0-v1.0")' 2>/dev/null || echo '1.6.0-v1.0'
npm view @prizm-ui/components versions --tag ng14 --json | jq '([.[] | select(startswith("1.7.0-v1"))] | last // "1.7.0-v1.0")' 2>/dev/null || echo '1.7.0-v1.0'
)
echo "LAST_V1_VERSION=${last_v1_version}" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-publish-ng15.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Set up environment variables
run: |
last_v2_version=$(
npm view @prizm-ui/components versions --tag ng15 --json | jq '([.[] | select(startswith("2.3.0-v2"))] | last // "2.3.0-v2.0")' 2>/dev/null || echo '2.3.0-v2.0'
npm view @prizm-ui/components versions --tag ng15 --json | jq '([.[] | select(startswith("2.4.0-v2"))] | last // "2.4.0-v2.0")' 2>/dev/null || echo '2.4.0-v2.0'
)
echo "LAST_V2_VERSION=${last_v2_version}" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-publish-ng16.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Set up environment variables
run: |
last_v3_version=$(
npm view @prizm-ui/components versions --json | jq '([.[] | select(startswith("3.2.0"))] | last // "3.2.0")' 2>/dev/null || echo '3.2.0'
npm view @prizm-ui/components versions --json | jq '([.[] | select(startswith("3.3.0"))] | last // "3.3.0")' 2>/dev/null || echo '3.3.0'
)
echo "LAST_V3_VERSION=${last_v3_version}" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release-publish-ng14.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Set up environment variables
run: |
last_next_version=$(
(npm view @prizm-ui/components versions --tag ng14next --json 2>/dev/null || echo '1.6.0-ng14next.0') | jq '([.[] | select(startswith("1.6.0-ng14next"))] | last // "1.6.0-ng14next.0")' 2>/dev/null || echo '1.6.0-ng14next.0'
(npm view @prizm-ui/components versions --tag ng14next --json 2>/dev/null || echo '1.7.0-ng14next.0') | jq '([.[] | select(startswith("1.7.0-ng14next"))] | last // "1.7.0-ng14next.0")' 2>/dev/null || echo '1.7.0-ng14next.0'
)
echo "LAST_NEXT_VERSION=${last_next_version}" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release-publish-ng15.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Set up environment variables
run: |
last_next_version=$(
(npm view @prizm-ui/components versions --tag ng15next --json 2>/dev/null || echo '2.3.0-ng15next.0') | jq '([.[] | select(startswith("2.3.0-ng15next"))] | last // "2.3.0-ng15next.0")' 2>/dev/null || echo '2.3.0-ng15next.0'
(npm view @prizm-ui/components versions --tag ng15next --json 2>/dev/null || echo '2.4.0-ng15next.0') | jq '([.[] | select(startswith("2.4.0-ng15next"))] | last // "2.4.0-ng15next.0")' 2>/dev/null || echo '2.4.0-ng15next.0'
)
echo "LAST_NEXT_VERSION=${last_next_version}" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release-publish-ng16.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Set up environment variables
run: |
last_next_version=$(
(npm view @prizm-ui/components versions --tag next --json 2>/dev/null || echo '3.2.0-next.0') | jq '([.[] | select(startswith("3.2.0-next"))] | last // "3.2.0-next.0")' 2>/dev/null || echo '3.2.0-next.0'
(npm view @prizm-ui/components versions --tag next --json 2>/dev/null || echo '3.3.0-next.0') | jq '([.[] | select(startswith("3.3.0-next"))] | last // "3.3.0-next.0")' 2>/dev/null || echo '3.3.0-next.0'
)
echo "LAST_NEXT_VERSION=${last_next_version}" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .gitlab/issue_templates/bug.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Dependencies:
```
➜ npm ls @prizm-ui/zyfra-components
@prizm-ui/zyfra-components 2.3.0
@prizm-ui/zyfra-components 2.4.0
```

```
Expand Down
2 changes: 1 addition & 1 deletion .gitlab/issue_templates/question.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ v16.13.0

Dependencies:

`@prizm-ui/components 2.3.0`
`@prizm-ui/components 2.4.0`

Операционная ситема:

Expand Down
2 changes: 1 addition & 1 deletion apps/doc/src/app/version-manager/current.const.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const PRIZM_CURRENT_VERSION = '3.2.0';
export const PRIZM_CURRENT_VERSION = '3.3.0';
2 changes: 1 addition & 1 deletion apps/doc/src/app/version-manager/current.const.ts.ng14
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const PRIZM_CURRENT_VERSION = '1.6.0';
export const PRIZM_CURRENT_VERSION = '1.7.0';
2 changes: 1 addition & 1 deletion apps/doc/src/app/version-manager/current.const.ts.ng16
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const PRIZM_CURRENT_VERSION = '3.2.0';
export const PRIZM_CURRENT_VERSION = '3.3.0';
24 changes: 12 additions & 12 deletions apps/doc/src/app/version-manager/versions.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ export interface PrizmVersionMeta {

export const PRIZM_VERSIONS_META: readonly PrizmVersionMeta[] = [
{
label: '3.2.0 (ng16)',
version: '3.2.0',
label: '3.3.0 (ng16)',
version: '3.3.0',
stackblitz: 'https://stackblitz.com/edit/prizm-v3-demo',
link: new URL('http://prizm.site'),
otherLinks: [new URL('https://prizm-v3.web.app')],
Expand All @@ -30,8 +30,8 @@ export const PRIZM_VERSIONS_META: readonly PrizmVersionMeta[] = [
},
},
{
label: '1.6.0 (ng14)',
version: '1.6.0',
label: '1.7.0 (ng14)',
version: '1.7.0',
stackblitz: 'https://stackblitz.com/edit/prizm-v1-demo',
link: new URL('https://prizm-v1.web.app'),
otherLinks: [],
Expand All @@ -40,8 +40,8 @@ export const PRIZM_VERSIONS_META: readonly PrizmVersionMeta[] = [
},
},
{
label: '3.2.0-next (ng16)',
version: '3.2.0-next',
label: '3.3.0-next (ng16)',
version: '3.3.0-next',
stackblitz: 'https://stackblitz.com/edit/prizm-v3-next-demo',
link: new URL('https://prizm-v3-next.web.app'),
otherLinks: [],
Expand All @@ -54,15 +54,15 @@ export const PRIZM_VERSIONS_META: readonly PrizmVersionMeta[] = [
otherLinks: [],
},
{
label: '1.6.0-next (ng14)',
version: '1.6.0-next',
label: '1.7.0-next (ng14)',
version: '1.7.0-next',
stackblitz: 'https://stackblitz.com/edit/prizm-v1-next-demo',
link: new URL('https://prizm-v1-next.web.app'),
otherLinks: [],
},
{
label: '3.2.0-beta (ng16)',
version: '3.2.0-beta',
label: '3.3.0-beta (ng16)',
version: '3.3.0-beta',
stackblitz: 'https://stackblitz.com/edit/prizm-v3-beta-demo',
link: new URL('https://prizm-v3-beta.web.app'),
otherLinks: [],
Expand All @@ -75,8 +75,8 @@ export const PRIZM_VERSIONS_META: readonly PrizmVersionMeta[] = [
otherLinks: [],
},
{
label: '1.6.0-beta (ng14)',
version: '1.6.0-beta',
label: '1.7.0-beta (ng14)',
version: '1.7.0-beta',
stackblitz: 'https://stackblitz.com/edit/prizm-v1-beta-demo',
link: new URL('https://prizm-v1-beta.web.app'),
otherLinks: [],
Expand Down
2 changes: 1 addition & 1 deletion libs/ast/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/ast",
"version": "3.2.0",
"version": "3.3.0",
"private": false,
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion libs/ast/package.json.ng14
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/ast",
"version": "1.6.0",
"version": "1.7.0",
"private": false,
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion libs/ast/package.json.ng15
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/ast",
"version": "2.3.0",
"version": "2.4.0",
"private": false,
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion libs/ast/package.json.ng16
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/ast",
"version": "3.2.0",
"version": "3.3.0",
"private": false,
"publishConfig": {
"access": "public",
Expand Down
6 changes: 3 additions & 3 deletions libs/charts/base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/charts",
"version": "3.2.0",
"version": "3.3.0",
"license": "MIT",
"private": false,
"publishConfig": {
Expand All @@ -10,8 +10,8 @@
"peerDependencies": {
"@angular/common": "^16.1.8",
"@angular/core": "^16.1.8",
"@prizm-ui/theme": "^3.2.0",
"@prizm-ui/helpers": "^3.2.0",
"@prizm-ui/theme": "^3.3.0",
"@prizm-ui/helpers": "^3.3.0",
"@antv/g2plot": "^2.4.22"
},
"dependencies": {
Expand Down
6 changes: 3 additions & 3 deletions libs/charts/base/package.json.ng14
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/charts",
"version": "1.6.0",
"version": "1.7.0",
"license": "MIT",
"private": false,
"publishConfig": {
Expand All @@ -10,8 +10,8 @@
"peerDependencies": {
"@angular/common": "^14.2.12",
"@angular/core": "^14.2.12",
"@prizm-ui/theme": "^1.6.0",
"@prizm-ui/helpers": "^1.6.0",
"@prizm-ui/theme": "^1.7.0",
"@prizm-ui/helpers": "^1.7.0",
"@antv/g2plot": "^2.4.22"
},
"dependencies": {
Expand Down
6 changes: 3 additions & 3 deletions libs/charts/base/package.json.ng16
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/charts",
"version": "3.2.0",
"version": "3.3.0",
"license": "MIT",
"private": false,
"publishConfig": {
Expand All @@ -10,8 +10,8 @@
"peerDependencies": {
"@angular/common": "^16.1.8",
"@angular/core": "^16.1.8",
"@prizm-ui/theme": "^3.2.0",
"@prizm-ui/helpers": "^3.2.0",
"@prizm-ui/theme": "^3.3.0",
"@prizm-ui/helpers": "^3.3.0",
"@antv/g2plot": "^2.4.22"
},
"dependencies": {
Expand Down
12 changes: 6 additions & 6 deletions libs/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/components",
"version": "3.2.0",
"version": "3.3.0",
"description": "Prizm UI system design components library http://prizm.zyfra.com",
"license": "MIT",
"private": false,
Expand All @@ -17,12 +17,12 @@
"@ng-web-apis/resize-observer": "^3.0.1",
"@ng-web-apis/intersection-observer": "^3.0.0",
"@ng-web-apis/mutation-observer": "3.0.1",
"@prizm-ui/helpers": "^3.2.0",
"@prizm-ui/core": "^3.2.0",
"@prizm-ui/i18n": "^3.2.0",
"@prizm-ui/theme": "^3.2.0"
"@prizm-ui/helpers": "^3.3.0",
"@prizm-ui/core": "^3.3.0",
"@prizm-ui/i18n": "^3.3.0",
"@prizm-ui/theme": "^3.3.0"
},
"dependencies": {
"tslib": "^2.3.0"
"tslib": "^2.4.0"
}
}
10 changes: 5 additions & 5 deletions libs/components/package.json.ng14
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/components",
"version": "1.6.0",
"version": "1.7.0",
"description": "Prizm UI system design components library http://prizm.zyfra.com",
"license": "MIT",
"private": false,
Expand All @@ -16,10 +16,10 @@
"@ng-web-apis/resize-observer": "^1.0.3",
"@ng-web-apis/intersection-observer": "^3.0.0",
"@ng-web-apis/mutation-observer": "2.0.0",
"@prizm-ui/helpers": "^1.6.0",
"@prizm-ui/core": "^1.6.0",
"@prizm-ui/i18n": "^1.6.0",
"@prizm-ui/theme": "^1.6.0"
"@prizm-ui/helpers": "^1.7.0",
"@prizm-ui/core": "^1.7.0",
"@prizm-ui/i18n": "^1.7.0",
"@prizm-ui/theme": "^1.7.0"
},
"dependencies": {
"tslib": "^2.3.0"
Expand Down
10 changes: 5 additions & 5 deletions libs/components/package.json.ng15
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/components",
"version": "2.3.0",
"version": "2.4.0",
"description": "Prizm UI system design components library http://prizm.zyfra.com",
"license": "MIT",
"private": false,
Expand All @@ -17,10 +17,10 @@
"@ng-web-apis/resize-observer": "^1.0.3",
"@ng-web-apis/intersection-observer": "^3.0.0",
"@ng-web-apis/mutation-observer": "2.0.0",
"@prizm-ui/helpers": "^2.3.0",
"@prizm-ui/core": "^2.3.0",
"@prizm-ui/i18n": "^2.3.0",
"@prizm-ui/theme": "^2.3.0"
"@prizm-ui/helpers": "^2.4.0",
"@prizm-ui/core": "^2.4.0",
"@prizm-ui/i18n": "^2.4.0",
"@prizm-ui/theme": "^2.4.0"
},
"dependencies": {
"tslib": "^2.3.0"
Expand Down
10 changes: 5 additions & 5 deletions libs/components/package.json.ng16
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/components",
"version": "3.2.0",
"version": "3.3.0",
"description": "Prizm UI system design components library http://prizm.zyfra.com",
"license": "MIT",
"private": false,
Expand All @@ -17,10 +17,10 @@
"@ng-web-apis/resize-observer": "^3.0.1",
"@ng-web-apis/intersection-observer": "^3.0.0",
"@ng-web-apis/mutation-observer": "3.0.1",
"@prizm-ui/helpers": "^3.2.0",
"@prizm-ui/core": "^3.2.0",
"@prizm-ui/i18n": "^3.2.0",
"@prizm-ui/theme": "^3.2.0"
"@prizm-ui/helpers": "^3.3.0",
"@prizm-ui/core": "^3.3.0",
"@prizm-ui/i18n": "^3.3.0",
"@prizm-ui/theme": "^3.3.0"
},
"dependencies": {
"tslib": "^2.3.0"
Expand Down
2 changes: 1 addition & 1 deletion libs/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/core",
"version": "3.2.0",
"version": "3.3.0",
"license": "MIT",
"description": "The main library for creating Angular components and elements using Prizm.",
"private": false,
Expand Down
2 changes: 1 addition & 1 deletion libs/core/package.json.ng14
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/core",
"version": "1.6.0",
"version": "1.7.0",
"license": "MIT",
"description": "The main library for creating Angular components and elements using Prizm.",
"private": false,
Expand Down
2 changes: 1 addition & 1 deletion libs/core/package.json.ng15
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/core",
"version": "2.3.0",
"version": "2.4.0",
"license": "MIT",
"description": "The main library for creating Angular components and elements using Prizm.",
"private": false,
Expand Down
2 changes: 1 addition & 1 deletion libs/core/package.json.ng16
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/core",
"version": "3.2.0",
"version": "3.3.0",
"license": "MIT",
"description": "The main library for creating Angular components and elements using Prizm.",
"private": false,
Expand Down
2 changes: 1 addition & 1 deletion libs/helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prizm-ui/helpers",
"version": "3.2.0",
"version": "3.3.0",
"license": "MIT",
"description": "Library to make it easy to create Angular applications. Contains Injectables Service, RxJS utilities, directives, and standard pipes.",
"private": false,
Expand Down
Loading

0 comments on commit 5e09636

Please sign in to comment.