diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a7fbd2..abf8f62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,16 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [v0.17.0](https://github.com/ideasonpurpose/docker-build/compare/v0.16.0...v0.17.0) + +- minor bump deps [`0268016`](https://github.com/ideasonpurpose/docker-build/commit/02680169a3af4f34c10cb223b91cd59a41281401) +- use targets, update default config, exclude 'block' from copy to fix JSX error [`9ba1d7e`](https://github.com/ideasonpurpose/docker-build/commit/9ba1d7e02d0a1195920fffc0e669d14d94f89295) +- update README [`598af42`](https://github.com/ideasonpurpose/docker-build/commit/598af425f33d01a18fe3c7d12093d654dfbfc6e7) + #### [v0.16.0](https://github.com/ideasonpurpose/docker-build/compare/v0.15.1...v0.16.0) +> 10 February 2024 + - bump deps [`3e0d382`](https://github.com/ideasonpurpose/docker-build/commit/3e0d38229eb018afddc7689e1e156660144db3cf) - remove cosmiconfig, so docker-based builds still work [`5da54b1`](https://github.com/ideasonpurpose/docker-build/commit/5da54b17075093de5cd6581718db078844b821a9) - disable cosmiconfig to get old webpack working again [`cf5a60a`](https://github.com/ideasonpurpose/docker-build/commit/cf5a60a9148388e67de8532e5329aa88203ca9ad) diff --git a/Dockerfile b/Dockerfile index 52043b8..fedcdff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ # FROM node:18.17.1-bookworm-slim FROM node:20.12-bookworm-slim -LABEL version="0.16.0" +LABEL version="0.17.0" # enable color in the terminal ENV TERM xterm-256color diff --git a/README.md b/README.md index cec13a4..46cfd84 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Docker Build Tools -#### Version 0.16.0 +#### Version 0.17.0 diff --git a/package-lock.json b/package-lock.json index 8fa6af7..675d915 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "iop-build-tools", - "version": "0.16.0", + "version": "0.17.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "iop-build-tools", - "version": "0.16.0", + "version": "0.17.0", "license": "ISC", "dependencies": { "@babel/preset-react": "^7.24.1", diff --git a/package.json b/package.json index 60bb6c6..3ff99ac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iop-build-tools", - "version": "0.16.0", + "version": "0.17.0", "description": "Bundling our webpack build-chain into Docker", "bugs": "https://github.com/ideasonpurpose/docker-build/issues", "repository": "ideasonpurpose/docker-build",