Skip to content

Commit

Permalink
Merge pull request #46 from acelaya/feature/update-deps
Browse files Browse the repository at this point in the history
Feature/update deps
  • Loading branch information
acelaya authored Feb 19, 2023
2 parents 9306ed0 + 9b990d1 commit bcc0236
Show file tree
Hide file tree
Showing 10 changed files with 2,790 additions and 2,810 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
node-version: ['18.x']
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Use node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
Expand All @@ -29,9 +29,9 @@ jobs:
node-version: ['14.x', '15.x', '16.x', '17.x', '18.x']
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Use node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
Expand All @@ -48,9 +48,9 @@ jobs:
node-version: ['18.x']
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Use node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org).

## [2.1.0] - 2023-02-19
### Added
* *Nothing*

### Changed
* Update dependencies

### Deprecated
* *Nothing*

### Removed
* *Nothing*

### Fixed
* *Nothing*


## [2.0.1] - 2023-01-03
### Added
* *Nothing*
Expand Down
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ This library provides a simple `ExternalLink` component for [react](https://es.r
If you just need a simple link with no custom text:

```tsx
import React from 'react';
import { ExternalLink } from 'react-external-link';

const MyComponent = () => (
Expand All @@ -39,7 +38,6 @@ This will be rendered as:
If you need to provide a custom content, you can do so by providing the `ExternalLink`'s `children`:

```tsx
import React from 'react';
import { ExternalLink } from 'react-external-link';

const MyComponent = () => (
Expand All @@ -64,7 +62,6 @@ This will be rendered as:
It is also possible to pass any extra props, and they will be propagated to the link:

```tsx
import React from 'react';
import { ExternalLink } from 'react-external-link';

const MyComponent = () => <ExternalLink href="https://example.com" className="my-class" />;
Expand Down
Loading

0 comments on commit bcc0236

Please sign in to comment.