Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ofhouse committed Feb 17, 2022
1 parent 83d9aae commit 7d1e503
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 12 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog of Pixel Core

## 2.0.0 (February 17, 2022)

- Adds support for Next.js versions `>= 12.0.9`.
For older versions of Next.js please use the `v1.x.x` version of this package.

## 1.0.0 (November 28, 2021)

Initial release of `@millihq/pixel-core` package.
5 changes: 0 additions & 5 deletions packages/core/CHANGELOG.md

This file was deleted.

6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@millihq/pixel-core",
"version": "1.0.0",
"version": "2.0.0",
"main": "./dist/image-optimizer.js",
"types": "./dist/image-optimizer.d.ts",
"license": "Apache-2.0",
Expand All @@ -13,8 +13,8 @@
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest",
"prepack": "cp ../../LICENSE ./",
"postpack": "rm ./LICENSE"
"prepack": "cp ../../LICENSE ../../CHANGELOG.md ./",
"postpack": "rm ./LICENSE ./CHANGELOG.md"
},
"dependencies": {
"node-fetch": "^2.0.0"
Expand Down
8 changes: 4 additions & 4 deletions packages/express/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@millihq/pixel-express",
"version": "1.0.0",
"version": "2.0.0",
"main": "./dist/middleware.js",
"types": "./dist/middleware.d.ts",
"license": "Apache-2.0",
Expand All @@ -13,11 +13,11 @@
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest",
"prepack": "cp ../../LICENSE ./",
"postpack": "rm ./LICENSE"
"prepack": "cp ../../LICENSE ../../CHANGELOG.md ./",
"postpack": "rm ./LICENSE ./CHANGELOG.md"
},
"dependencies": {
"@millihq/pixel-core": "^1.0.0"
"@millihq/pixel-core": "^2.0.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
Expand Down

0 comments on commit 7d1e503

Please sign in to comment.