Skip to content

Commit

Permalink
0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjeffburke committed Dec 17, 2023
1 parent ac4fb38 commit a5a35d5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 22 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### v0.14.1 (2023-12-17)

- [Fix application of the hide marker in the README by evaldown.](https://github.com/papandreou/impro/commit/ac4fb38df7d48938865aba2476d72e1fefd0548a) ([Alex J Burke](mailto:alex@alexjeffburke.com))
- [Ensure engine options can be configured at the level of the Pipeline.](https://github.com/papandreou/impro/commit/c0aa66d0cddff0ec5f55b1db401c55148f4ed436) ([Alex J Burke](mailto:alex@alexjeffburke.com))

### v0.14.0 (2023-12-15)

- [Add a note about requiring node 14+ to the README.](https://github.com/papandreou/impro/commit/ef5a2b3cee7ffb04d522da4e80197b6174270e8e) ([Alex J Burke](mailto:alex@alexjeffburke.com))
Expand Down
22 changes: 1 addition & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,6 @@ select the correct conversion library to perform the job itself.
This library supports and is tested against node version **14** and above and
includes support for the following image conversion tools:

<!-- evaldown hide:true,console:true -->

```js
const pkg = require('./package.json');

const engineLibs = Object.keys(require('./src/engines')).filter(
(name) => name !== 'metadata'
);

const engineNameToDepName = {
gm: 'gm-papandreou',
};

for (const engineLib of engineLibs) {
const depName = engineNameToDepName[engineLib] || engineLib;
let depVersion = pkg.devDependencies[depName];
if (!/^[~^]/.test(depVersion)) depVersion = `^${depVersion}`;
console.log(`- ${engineLib} (npm install ${depName}@${depVersion})`);
}
```

<!-- evaldown output:true -->

```
Expand Down Expand Up @@ -165,3 +144,4 @@ The pipeline above is equivalent to the chaining API example.
## License

Impro is licensed under a standard 3-clause BSD license.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "impro",
"version": "0.14.0",
"version": "0.14.1",
"description": "Image processing engine",
"author": "Andreas Lind <andreaslindpetersen@gmail.com>",
"main": "index.js",
Expand Down

0 comments on commit a5a35d5

Please sign in to comment.