Skip to content

Commit ac5d96a

Browse files
committed
fix version mismatch
1 parent f3c8745 commit ac5d96a

File tree

2 files changed

+34
-28
lines changed

2 files changed

+34
-28
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Version 2.2.0 - Jan 2, 2025
3+
## Version 2.3.0 - Jan 2, 2025
44

55
- Add PolyConvert.base()
66
- Require PHP 7.2+

README.md

Lines changed: 33 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
**Poly**glot **Crypto**graphy. High-level cryptographic functions that are
44
interoperable between NodeJS and PHP 7.2+ (and 8.0+).
55

6-
[![NPM Link](https://badgen.net/npm/v/poly-crypto?v=2.2.0)](https://npmjs.com/package/poly-crypto)
6+
[![NPM Link](https://badgen.net/npm/v/poly-crypto?v=2.3.0)](https://npmjs.com/package/poly-crypto)
77
[![Packagist Link](https://img.shields.io/packagist/php-v/poly-crypto/poly-crypto/2.1.0)](https://packagist.org/packages/poly-crypto/poly-crypto)
8-
[![Language](https://badgen.net/static/language/TS?v=2.2.0)](https://github.com/search?q=repo:kensnyder/poly-crypto++language:TypeScript&type=code)
9-
[![Build Status](https://github.com/kensnyder/poly-crypto/actions/workflows/workflow.yml/badge.svg?v=2.2.0)](https://github.com/kensnyder/poly-crypto/actions)
10-
[![Code Coverage](https://codecov.io/gh/kensnyder/poly-crypto/branch/main/graph/badge.svg?v=2.2.0)](https://codecov.io/gh/kensnyder/poly-crypto)
11-
[![Gzipped Size](https://badgen.net/bundlephobia/minzip/poly-crypto?label=minzipped&v=2.2.0)](https://bundlephobia.com/package/poly-crypto@2.2.0)
12-
[![Dependency details](https://badgen.net/bundlephobia/dependency-count/poly-crypto?v=2.2.0)](https://www.npmjs.com/package/poly-crypto?activeTab=dependencies)
13-
[![Tree shakeable](https://badgen.net/bundlephobia/tree-shaking/poly-crypto?v=2.2.0)](https://www.npmjs.com/package/poly-crypto)
14-
[![ISC License](https://badgen.net/github/license/kensnyder/poly-crypto?v=2.2.0)](https://opensource.org/licenses/ISC)
8+
[![Language](https://badgen.net/static/language/TS?v=2.3.0)](https://github.com/search?q=repo:kensnyder/poly-crypto++language:TypeScript&type=code)
9+
[![Build Status](https://github.com/kensnyder/poly-crypto/actions/workflows/workflow.yml/badge.svg?v=2.3.0)](https://github.com/kensnyder/poly-crypto/actions)
10+
[![Code Coverage](https://codecov.io/gh/kensnyder/poly-crypto/branch/main/graph/badge.svg?v=2.3.0)](https://codecov.io/gh/kensnyder/poly-crypto)
11+
[![Gzipped Size](https://badgen.net/bundlephobia/minzip/poly-crypto?label=minzipped&v=2.3.0)](https://bundlephobia.com/package/poly-crypto@2.3.0)
12+
[![Dependency details](https://badgen.net/bundlephobia/dependency-count/poly-crypto?v=2.3.0)](https://www.npmjs.com/package/poly-crypto?activeTab=dependencies)
13+
[![Tree shakeable](https://badgen.net/bundlephobia/tree-shaking/poly-crypto?v=2.3.0)](https://www.npmjs.com/package/poly-crypto)
14+
[![ISC License](https://badgen.net/github/license/kensnyder/poly-crypto?v=2.3.0)](https://opensource.org/licenses/ISC)
1515

1616
## Project Goals
1717

@@ -50,25 +50,31 @@ composer require poly-crypto/poly-crypto
5050

5151
## Table of Contents
5252

53-
1. [Technology choices](#technology-choices)
54-
1. [AES-255 GCM](#aes-256-gcm)
55-
1. [Bcrypt](#bcrypt)
56-
1. [Randomness](#randomness)
57-
1. [Use Cases](#use-cases)
58-
1. [Misuse](#misuse)
59-
1. [AES encryption](#aes-encryption)
60-
1. [Encrypt and decrypt with key](#encrypt-and-decrypt-with-key)
61-
1. [Encrypt and decrypt with password](#encrypt-and-decrypt-with-password)
62-
1. [Password hashing](#password-hashing)
63-
1. [Digest functions](#digest-functions)
64-
1. [Random functions](#random-functions)
65-
1. [Base conversion](#base-conversion)
66-
1. [Command line utilities](#command-line-utilities)
67-
1. [Browser usage](#browser-usage)
68-
1. [JavaScript direct import](#javascript-direct-import)
69-
1. [Unit tests](#unit-tests)
70-
1. [Open Source ISC License](#license)
71-
1. [Changelog](https://github.com/kensnyder/poly-crypto/blob/master/CHANGELOG.md)
53+
- [poly-crypto](#poly-crypto)
54+
- [Project Goals](#project-goals)
55+
- [Installation](#installation)
56+
- [Cheatsheet](#cheatsheet)
57+
- [Table of Contents](#table-of-contents)
58+
- [Technology choices](#technology-choices)
59+
- [AES-256 GCM](#aes-256-gcm)
60+
- [Bcrypt](#bcrypt)
61+
- [Randomness](#randomness)
62+
- [Use cases](#use-cases)
63+
- [Misuse](#misuse)
64+
- [AES Encryption](#aes-encryption)
65+
- [Encrypt and decrypt with key](#encrypt-and-decrypt-with-key)
66+
- [Encrypt and decrypt with password](#encrypt-and-decrypt-with-password)
67+
- [Password hashing](#password-hashing)
68+
- [Digest functions](#digest-functions)
69+
- [Random functions](#random-functions)
70+
- [Base conversion](#base-conversion)
71+
- [Command line utilities](#command-line-utilities)
72+
- [Global install of poly-crypto](#global-install-of-poly-crypto)
73+
- [Browser usage](#browser-usage)
74+
- [JavaScript direct import](#javascript-direct-import)
75+
- [Unit tests](#unit-tests)
76+
- [Contributing](#contributing)
77+
- [License](#license)
7278

7379
## Technology choices
7480

0 commit comments

Comments
 (0)