Skip to content

Commit

Permalink
v3.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelmhtr committed Oct 14, 2024
1 parent 8261fb7 commit d06086a
Show file tree
Hide file tree
Showing 9 changed files with 209 additions and 127 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

All notable changes to this project will be documented in this file.

## [3.7.1] - 2024-10-13

### Changed

- Set up linting (by [JC Franco](https://github.com/jcfranco))
- Remove build output from source control (by [JC Franco](https://github.com/jcfranco))
- Add releasing script (by [JC Franco](https://github.com/jcfranco))
- Update test action to run on node versions 8 - 20 (by [JC Franco](https://github.com/jcfranco))
- Set up conventional commits PR check (by [JC Franco](https://github.com/jcfranco))
- Fix dependabot config (by [JC Franco](https://github.com/jcfranco))

## [3.7.0] - 2024-09-30

### Changed
Expand Down
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Add the following script to your project (only ~9kb):

<!-- Or specify a version -->
<script
src="https://cdn.jsdelivr.net/gh/manuelmhtr/countries-and-timezones@v3.7.0/dist/index.min.js"
src="https://cdn.jsdelivr.net/gh/manuelmhtr/countries-and-timezones@v3.7.1/dist/index.min.js"
type="text/javascript"
></script>

Expand All @@ -48,7 +48,7 @@ Returns a country referenced by its `id`.

Accepts a parameter with [`options`](#options).

**Example**
#### Example

```javascript
const ct = require("countries-and-timezones");
Expand All @@ -72,7 +72,7 @@ Prints:

Returns a timezone referenced by its `name`.

**Example**
#### Example

```javascript
const ct = require("countries-and-timezones");
Expand Down Expand Up @@ -102,7 +102,7 @@ Returns an object with the data of all countries.

Accepts a parameter with [`options`](#options).

**Example**
#### Example

```javascript
const ct = require("countries-and-timezones");
Expand Down Expand Up @@ -146,7 +146,7 @@ Returns an object with the data of all timezones.

Accepts a parameter with [`options`](#options).

**Example**
#### Example

```javascript
const ct = require("countries-and-timezones");
Expand Down Expand Up @@ -206,7 +206,7 @@ Returns an array with all the timezones of a country given its `id`.

Accepts a parameter with [`options`](#options).

**Example**
#### Example

```javascript
const ct = require("countries-and-timezones");
Expand Down Expand Up @@ -257,7 +257,7 @@ Returns a list of the countries that uses a timezone given its `name`. When a ti

Accepts a parameter with [`options`](#options).

**Example**
#### Example

```javascript
const ct = require("countries-and-timezones");
Expand Down Expand Up @@ -302,7 +302,7 @@ Returns a the most relevant country (due to its geographical location) that uses

Accepts a parameter with [`options`](#options).

**Example**
#### Example

```javascript
const ct = require("countries-and-timezones");
Expand Down Expand Up @@ -404,6 +404,7 @@ Consider [sponsoring this project](https://github.com/sponsors/manuelmhtr).
## Working on something more complex?

Meet [Spott](https://spott.dev):

- **Search any city, country or administrative division** in the world. By full strings or autocompletion.
- Find a place by an IP address.
- Access to more than 240,000 geographical places. In more than 20 languages.
Expand Down
Loading

0 comments on commit d06086a

Please sign in to comment.