Skip to content

Commit

Permalink
Release v1.1.1 (#23)
Browse files Browse the repository at this point in the history
- dep(eslint): upgrade to v9
  • Loading branch information
msimerson authored Jan 13, 2025
1 parent 17c1c27 commit 8d859fe
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
engines:
eslint:
enabled: true
channel: 'eslint-8'
channel: 'eslint-9'
config:
config: '.eslintrc.yaml'
config: 'eslint.config.mjs'

checks:
method-complexity:
Expand Down
7 changes: 0 additions & 7 deletions .eslintrc.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion .release
Submodule .release updated 3 files
+9 −0 README.md
+4 −1 contributors.js
+8 −1 finish.sh
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).

### Unreleased

### [1.1.1] - 2025-01-13

- dep(eslint): upgrade to v9

### [1.1.0] - 2024-05-03

- set: added 'default' mode. See docs. #
Expand Down Expand Up @@ -47,3 +51,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
[1.0.6]: https://github.com/haraka/haraka-notes/releases/tag/1.0.6
[1.0.7]: https://github.com/haraka/haraka-notes/releases/tag/v1.0.7
[1.1.0]: https://github.com/haraka/haraka-notes/releases/tag/v1.1.0
[1.1.1]: https://github.com/haraka/haraka-notes/releases/tag/v1.1.1
7 changes: 4 additions & 3 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

This handcrafted artisinal software is brought to you by:

| <img height="80" src="https://avatars.githubusercontent.com/u/261635?v=4"><br><a href="https://github.com/msimerson">msimerson</a> (<a href="https://github.com/haraka/haraka-notes/commits?author=msimerson">23</a>)|
| :---: |
| <img height="80" src="https://avatars.githubusercontent.com/u/261635?v=4"><br><a href="https://github.com/msimerson">msimerson</a> (<a href="https://github.com/haraka/haraka-notes/commits?author=msimerson">24</a>) |
| :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |

<sub>this file is maintained by [.release](https://github.com/msimerson/.release)</sub>
<sub>this file is generated by [.release](https://github.com/msimerson/.release).
Contribute to this project to get your GitHub profile included here.</sub>
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[![Build Status][ci-img]][ci-url]
[![Code Climate][clim-img]][clim-url]
[![Code Coverage][cov-img]][cov-url]
[![NPM][npm-img]][npm-url]

# haraka-notes

Expand Down Expand Up @@ -59,5 +58,3 @@ To reduce the likelihood of namespace collisions in Haraka notes, consider regis
[cov-url]: https://codecov.io/github/haraka/haraka-notes
[clim-img]: https://codeclimate.com/github/haraka/haraka-notes/badges/gpa.svg
[clim-url]: https://codeclimate.com/github/haraka/haraka-notes
[npm-img]: https://nodei.co/npm/haraka-notes.png
[npm-url]: https://www.npmjs.com/package/haraka-notes
25 changes: 25 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import globals from 'globals'
import path from 'node:path'
import { fileURLToPath } from 'node:url'
import js from '@eslint/js'
import { FlatCompat } from '@eslint/eslintrc'

const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all,
})

export default [
...compat.extends('@haraka'),
{
languageOptions: {
globals: {
...globals.node,
...globals.mocha,
},
},
},
]
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "haraka-notes",
"version": "1.1.0",
"version": "1.1.1",
"description": "Haraka Notes",
"main": "index.js",
"files": [
"CHANGELOG.md"
],
"scripts": {
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint@^8 *.js test",
"lint:fix": "npx eslint@^8 *.js test --fix",
"lint": "npx eslint *.js test",
"lint:fix": "npx eslint *.js test --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "npx mocha@10",
Expand All @@ -31,6 +31,6 @@
},
"homepage": "https://github.com/haraka/haraka-notes#readme",
"devDependencies": {
"@haraka/eslint-config": "^1.1.3"
"@haraka/eslint-config": "^2.0.2"
}
}

0 comments on commit 8d859fe

Please sign in to comment.