Skip to content

Commit 0c32d1c

Browse files
committed
release: v5.0.0-rc.2
1 parent 504e892 commit 0c32d1c

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
Several quick start options are available:
4848

49-
- [Download the latest release](https://github.com/coreui/coreui-react/archive/v5.0.0-rc.1.zip)
49+
- [Download the latest release](https://github.com/coreui/coreui-react/archive/v5.0.0-rc.2.zip)
5050
- Clone the repo: `git clone https://github.com/coreui/coreui-react.git`
5151
- Install with [npm](https://www.npmjs.com/): `npm install @coreui/react`
5252
- Install with [yarn](https://yarnpkg.com/): `yarn add @coreui/react`

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"npmClient": "yarn",
33
"packages": ["packages/*"],
4-
"version": "5.0.0-rc.1",
4+
"version": "5.0.0-rc.2",
55
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
66
}

packages/coreui-react/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
Several quick start options are available:
4848

49-
- [Download the latest release](https://github.com/coreui/coreui-react/archive/v5.0.0-rc.1.zip)
49+
- [Download the latest release](https://github.com/coreui/coreui-react/archive/v5.0.0-rc.2.zip)
5050
- Clone the repo: `git clone https://github.com/coreui/coreui-react.git`
5151
- Install with [npm](https://www.npmjs.com/): `npm install @coreui/react`
5252
- Install with [yarn](https://yarnpkg.com/): `yarn add @coreui/react`

packages/coreui-react/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/react",
3-
"version": "5.0.0-rc.1",
3+
"version": "5.0.0-rc.2",
44
"description": "UI Components Library for React.js",
55
"keywords": [
66
"react",
@@ -41,7 +41,7 @@
4141
"test:update": "jest --coverage --updateSnapshot"
4242
},
4343
"dependencies": {
44-
"@coreui/coreui": "^5.0.0-rc.1",
44+
"@coreui/coreui": "^5.0.0-rc.2",
4545
"@popperjs/core": "^2.11.8",
4646
"prop-types": "^15.8.1"
4747
},

packages/coreui-react/src/components/dropdown/CDropdownToggle.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export interface CDropdownToggleProps extends Omit<CButtonProps, 'type'> {
2121
/**
2222
* If a dropdown `variant` is set to `nav-item` then render the toggler as a link instead of a button.
2323
*
24-
* @since v5.0.0-rc.1
24+
* @since v5.0.0-rc.2
2525
*/
2626
navLink?: boolean
2727
/**

packages/coreui-react/src/components/nav/CNavGroup.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export interface CNavGroupProps extends HTMLAttributes<HTMLDivElement | HTMLLIEl
2222
/**
2323
* Component used for the root node. Either a string to use a HTML element or a component.
2424
*
25-
* @since 5.0.0-rc.1
25+
* @since 5.0.0-rc.2
2626
*/
2727
as?: ElementType
2828
/**

packages/coreui-react/src/components/nav/CNavGroupItems.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export interface CNavGroupItemsProps extends HTMLAttributes<HTMLDivElement | HTM
88
/**
99
* Component used for the root node. Either a string to use a HTML element or a component.
1010
*
11-
* @since 5.0.0-rc.1
11+
* @since 5.0.0-rc.2
1212
*/
1313
as?: ElementType
1414
/**

packages/coreui-react/src/components/nav/CNavItem.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export interface CNavItemProps extends Omit<CNavLinkProps, 'component'> {
1010
/**
1111
* Component used for the root node. Either a string to use a HTML element or a component.
1212
*
13-
* @since 5.0.0-rc.1
13+
* @since 5.0.0-rc.2
1414
*/
1515
as?: ElementType
1616
}

packages/coreui-react/src/components/sidebar/CSidebarBrand.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export interface CSidebarBrandProps extends HTMLAttributes<HTMLAnchorElement | H
88
/**
99
* Component used for the root node. Either a string to use a HTML element or a component.
1010
*
11-
* @since 5.0.0-rc.1
11+
* @since 5.0.0-rc.2
1212
*/
1313
as?: ElementType
1414
/**

packages/coreui-react/src/components/sidebar/CSidebarNav.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export interface CSidebarNavProps extends HTMLAttributes<HTMLUListElement> {
1616
/**
1717
* Component used for the root node. Either a string to use a HTML element or a component.
1818
*
19-
* @since 5.0.0-rc.1
19+
* @since 5.0.0-rc.2
2020
*/
2121
as?: ElementType
2222
/**

packages/docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/react-docs",
3-
"version": "5.0.0-rc.1",
3+
"version": "5.0.0-rc.2",
44
"private": true,
55
"description": "",
66
"homepage": "https://coreui.io/react/",

0 commit comments

Comments
 (0)