Skip to content

Commit 9970867

Browse files
committed
v11.1.0 - boundation, changelog, version bump
1 parent baf49e5 commit 9970867

File tree

6 files changed

+561
-320
lines changed

6 files changed

+561
-320
lines changed

.github/workflows/bevry.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ jobs:
1818
continue-on-error: ${{ contains('macos-latest windows-latest', matrix.os) }}
1919
steps:
2020
- uses: actions/checkout@v4
21+
- name: Install Deno
22+
uses: denoland/setup-deno@v1
23+
with:
24+
deno-version: vx.x.x
2125
- name: Install desired Node.js version
2226
uses: actions/setup-node@v4
2327
with:
@@ -47,6 +51,10 @@ jobs:
4751
runs-on: ubuntu-latest
4852
steps:
4953
- uses: actions/checkout@v4
54+
- name: Install Deno
55+
uses: denoland/setup-deno@v1
56+
with:
57+
deno-version: vx.x.x
5058
- name: Install desired Node.js version
5159
uses: actions/setup-node@v4
5260
with:

HISTORY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# History
22

3+
## v11.1.0 2023 December 28
4+
5+
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation)
6+
- Thank you to the sponsors: [Andrew Nesbitt](https://nesbitt.io), [Balsa](https://balsa.com), [Codecov](https://codecov.io/), [Poonacha Medappa](https://poonachamedappa.com), [Rob Morris](https://github.com/Rob-Morris), [Sentry](https://sentry.io), [Syntax](https://syntax.fm)
7+
38
## v11.0.0 2023 December 27
49

510
- Rewrote to inline [github-commit](https://github.com/bevry-archive/github-commit), [github-contributors](https://github.com/bevry-archive/github-contributors), [github-members](https://github.com/bevry-archive/github-members), [github-repos](https://github.com/bevry-archive/github-repos), and added CLI to to integrate [update-contributors](https://github.com/bevry-archive/update-contributors) and the unreleased update-sponsors/update-backers/[sponsored](https://github.com/bevry-archive/sponsored)

LICENSE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<!-- LICENSEFILE/ -->
22

3-
<h1>License</h1>
3+
# License
44

55
Unless stated otherwise all works are:
66

7-
<ul><li>Copyright &copy; <a href="https://github.com/balupton">Benjamin Lupton</a></li></ul>
7+
- Copyright &copy; [Benjamin Lupton](https://balupton.com)
88

99
and licensed under:
1010

11-
<ul><li><a href="http://spdx.org/licenses/Artistic-2.0.html">Artistic License 2.0</a></li></ul>
11+
- [Artistic License 2.0](http://spdx.org/licenses/Artistic-2.0.html)
1212

13-
<h2>The Artistic License 2.0</h2>
13+
## The Artistic License 2.0
1414

1515
<pre>
1616
Copyright (c) 2000-2006, The Perl Foundation.

README.md

Lines changed: 80 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<!-- TITLE/ -->
22

3-
<h1>@bevry/github-api</h1>
3+
# @bevry/github-api
44

55
<!-- /TITLE -->
66

7-
87
<!-- BADGES/ -->
98

109
<span class="badge-githubworkflow"><a href="https://github.com/bevry/github-api/actions?query=workflow%3Abevry" title="View the status of this project's GitHub Workflow: bevry"><img src="https://github.com/bevry/github-api/workflows/bevry/badge.svg" alt="Status of the GitHub Workflow: bevry" /></a></span>
@@ -25,7 +24,6 @@
2524

2625
<!-- /BADGES -->
2726

28-
2927
<!-- DESCRIPTION/ -->
3028

3129
Interact with the GitHub API, fetching commits, repositories, members, and backers (authors, maintainers, contributors, funders, sponsors, donors)
@@ -39,82 +37,90 @@ Interact with the GitHub API, fetching commits, repositories, members, and backe
3937

4038
<!-- INSTALL/ -->
4139

42-
<h2>Install</h2>
40+
## Install
41+
42+
### [npm](https://npmjs.com "npm is a package manager for javascript")
43+
44+
#### Install Globally
45+
46+
- Install: `npm install --global @bevry/github-api`
47+
- Executable: `github-backers`
48+
49+
#### Install Locally
4350

44-
<a href="https://npmjs.com" title="npm is a package manager for javascript"><h3>npm</h3></a>
45-
<h4>Install Globally</h4>
46-
<ul>
47-
<li>Install: <code>npm install --global @bevry/github-api</code></li>
48-
<li>Executable: <code>github-backers</code></li>
49-
</ul>
50-
<h4>Install Locally</h4>
51-
<ul>
52-
<li>Install: <code>npm install --save @bevry/github-api</code></li>
53-
<li>Executable: <code>npx github-backers</code></li>
54-
<li>Import: <code>import pkg from ('@bevry/github-api')</code></li>
55-
<li>Require: <code>const pkg = require('@bevry/github-api').default</code></li>
56-
</ul>
51+
- Install: `npm install --save @bevry/github-api`
52+
- Executable: `npx github-backers`
53+
- Import: `import pkg from ('@bevry/github-api')`
54+
- Require: `const pkg = require('@bevry/github-api').default`
5755

58-
<a href="https://www.skypack.dev" title="Skypack is a JavaScript Delivery Network for modern web apps"><h3>Skypack</h3></a>
56+
### [Deno](https://deno.land "Deno is a secure runtime for JavaScript and TypeScript, it is an alternative for Node.js")
57+
58+
``` typescript
59+
import pkg from 'https://unpkg.com/@bevry/github-api@^11.1.0/edition-deno/index.ts'
60+
```
61+
### [Skypack](https://www.skypack.dev "Skypack is a JavaScript Delivery Network for modern web apps")
5962

6063
``` html
6164
<script type="module">
62-
import pkg from '//cdn.skypack.dev/@bevry/github-api@^11.0.0'
65+
import pkg from '//cdn.skypack.dev/@bevry/github-api@^11.1.0'
6366
</script>
6467
```
65-
66-
<a href="https://unpkg.com" title="unpkg is a fast, global content delivery network for everything on npm"><h3>unpkg</h3></a>
68+
### [unpkg](https://unpkg.com "unpkg is a fast, global content delivery network for everything on npm")
6769

6870
``` html
6971
<script type="module">
70-
import pkg from '//unpkg.com/@bevry/github-api@^11.0.0'
72+
import pkg from '//unpkg.com/@bevry/github-api@^11.1.0'
7173
</script>
7274
```
73-
74-
<a href="https://jspm.io" title="Native ES Modules CDN"><h3>jspm</h3></a>
75+
### [jspm](https://jspm.io "Native ES Modules CDN")
7576

7677
``` html
7778
<script type="module">
78-
import pkg from '//dev.jspm.io/@bevry/github-api@11.0.0'
79+
import pkg from '//dev.jspm.io/@bevry/github-api@11.1.0'
7980
</script>
8081
```
82+
### [Editions](https://editions.bevry.me "Editions are the best way to produce and consume packages you care about.")
8183

82-
<h3><a href="https://editions.bevry.me" title="Editions are the best way to produce and consume packages you care about.">Editions</a></h3>
83-
84-
<p>This package is published with the following editions:</p>
85-
86-
<ul><li><code>@bevry/github-api/source/index.ts</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> source code with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li>
87-
<li><code>@bevry/github-api/edition-browsers/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against ES2022 for web browsers with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li>
88-
<li><code>@bevry/github-api</code> aliases <code>@bevry/github-api/edition-es2022/index.js</code></li>
89-
<li><code>@bevry/github-api/edition-es2022/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against ES2022 for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 18 || 20 || 21 with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li>
90-
<li><code>@bevry/github-api/edition-es2022-esm/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against ES2022 for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 18 || 20 || 21 with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li>
91-
<li><code>@bevry/github-api/edition-types/index.d.ts</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled Types with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li></ul>
84+
This package is published with the following editions:
85+
- `@bevry/github-api/source/index.ts` is [TypeScript](https://www.typescriptlang.org/ "TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.") source code with [Import](https://babeljs.io/docs/learn-es2015/#modules "ECMAScript Modules") for modules
86+
- `@bevry/github-api/edition-browsers/index.js` is [TypeScript](https://www.typescriptlang.org/ "TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.") compiled against [ES2022](https://en.wikipedia.org/wiki/ES2022 "ECMAScript 2022") for web browsers with [Import](https://babeljs.io/docs/learn-es2015/#modules "ECMAScript Modules") for modules
87+
- `@bevry/github-api` aliases `@bevry/github-api/edition-es2022/index.js`
88+
- `@bevry/github-api/edition-es2022/index.js` is [TypeScript](https://www.typescriptlang.org/ "TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.") compiled against [ES2022](https://en.wikipedia.org/wiki/ES2022 "ECMAScript 2022") for [Node.js](https://nodejs.org "Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine") 18 || 20 || 21 with [Require](https://nodejs.org/dist/latest-v5.x/docs/api/modules.html "Node/CJS Modules") for modules
89+
- `@bevry/github-api/edition-es2022-esm/index.js` is [TypeScript](https://www.typescriptlang.org/ "TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.") compiled against [ES2022](https://en.wikipedia.org/wiki/ES2022 "ECMAScript 2022") for [Node.js](https://nodejs.org "Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine") 18 || 20 || 21 with [Import](https://babeljs.io/docs/learn-es2015/#modules "ECMAScript Modules") for modules
90+
- `@bevry/github-api/edition-types/index.d.ts` is [TypeScript](https://www.typescriptlang.org/ "TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.") compiled Types with [Import](https://babeljs.io/docs/learn-es2015/#modules "ECMAScript Modules") for modules
91+
- `@bevry/github-api/edition-deno/index.ts` is [TypeScript](https://www.typescriptlang.org/ "TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.") source code made to be compatible with [Deno](https://deno.land "Deno is a secure runtime for JavaScript and TypeScript, it is an alternative to Node.js")
9292

9393
<!-- /INSTALL -->
9494

95-
9695
<!-- HISTORY/ -->
9796

98-
<h2>History</h2>
97+
## History
9998

100-
<a href="https://github.com/bevry/github-api/blob/master/HISTORY.md#files">Discover the release history by heading on over to the <code>HISTORY.md</code> file.</a>
99+
[Discover the release history by heading on over to the `HISTORY.md` file.](https://github.com/bevry/github-api/blob/HEAD/HISTORY.md#files)
101100

102101
<!-- /HISTORY -->
103102

104-
105103
<!-- BACKERS/ -->
106104

107-
<h2>Backers</h2>
105+
## Backers
106+
107+
### Code
108+
109+
[Discover how to contribute via the `CONTRIBUTING.md` file.](https://github.com/bevry/github-api/blob/HEAD/CONTRIBUTING.md#files)
110+
111+
#### Authors
108112

109-
<h3>Maintainers</h3>
113+
- [Benjamin Lupton](https://balupton.com) — Accelerating collaborative wisdom.
110114

111-
These amazing people are maintaining this project:
115+
#### Maintainers
112116

113-
<ul><li><a href="https://github.com/balupton">Benjamin Lupton</a> — <a href="https://github.com/bevry/github-api/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/github-api">view contributions</a></li></ul>
117+
- [Benjamin Lupton](https://github.com/balupton) — Accelerating collaborative wisdom.
114118

115-
<h3>Sponsors</h3>
119+
#### Contributors
116120

117-
No sponsors yet! Will you be the first?
121+
- [Benjamin Lupton](https://github.com/balupton)[view contributions](https://github.com/bevry/github-api/commits?author=balupton "View the GitHub contributions of Benjamin Lupton on repository bevry/github-api")
122+
123+
### Finances
118124

119125
<span class="badge-githubsponsors"><a href="https://github.com/sponsors/balupton" title="Donate to this project using GitHub Sponsors"><img src="https://img.shields.io/badge/github-donate-yellow.svg" alt="GitHub Sponsors donate button" /></a></span>
120126
<span class="badge-thanksdev"><a href="https://thanks.dev/u/gh/bevry" title="Donate to this project using ThanksDev"><img src="https://img.shields.io/badge/thanksdev-donate-yellow.svg" alt="ThanksDev donate button" /></a></span>
@@ -125,27 +131,45 @@ No sponsors yet! Will you be the first?
125131
<span class="badge-crypto"><a href="https://bevry.me/crypto" title="Donate to this project using Cryptocurrency"><img src="https://img.shields.io/badge/crypto-donate-yellow.svg" alt="crypto donate button" /></a></span>
126132
<span class="badge-paypal"><a href="https://bevry.me/paypal" title="Donate to this project using Paypal"><img src="https://img.shields.io/badge/paypal-donate-yellow.svg" alt="PayPal donate button" /></a></span>
127133

128-
<h3>Contributors</h3>
129-
130-
These amazing people have contributed code to this project:
131-
132-
<ul><li><a href="https://github.com/balupton">Benjamin Lupton</a> — <a href="https://github.com/bevry/github-api/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/github-api">view contributions</a></li></ul>
133-
134-
<a href="https://github.com/bevry/github-api/blob/master/CONTRIBUTING.md#files">Discover how you can contribute by heading on over to the <code>CONTRIBUTING.md</code> file.</a>
134+
#### Sponsors
135+
136+
- [Andrew Nesbitt](https://nesbitt.io) — Software engineer and researcher
137+
- [Balsa](https://balsa.com) — We're Balsa, and we're building tools for builders.
138+
- [Codecov](https://codecov.io/) — Empower developers with tools to improve code quality and testing.
139+
- [Poonacha Medappa](https://poonachamedappa.com)
140+
- [Rob Morris](https://github.com/Rob-Morris)
141+
- [Sentry](https://sentry.io) — Real-time crash reporting for your web apps, mobile apps, and games.
142+
- [Syntax](https://syntax.fm) — Syntax Podcast
143+
144+
#### Donors
145+
146+
- [Andrew Nesbitt](https://nesbitt.io)
147+
- [Balsa](https://balsa.com)
148+
- [Chad](https://opencollective.com/chad8)
149+
- [Codecov](https://codecov.io/)
150+
- [entroniq](https://gitlab.com/entroniq)
151+
- [Jean-Luc Geering](https://github.com/jlgeering)
152+
- [Michael Duane Mooring](https://mdm.cc)
153+
- [Mohammed Shah](https://github.com/smashah)
154+
- [Poonacha Medappa](https://poonachamedappa.com)
155+
- [Rob Morris](https://github.com/Rob-Morris)
156+
- [Sentry](https://sentry.io)
157+
- [ServieJS](https://github.com/serviejs)
158+
- [Skunk Team](https://skunk.team)
159+
- [Syntax](https://syntax.fm)
135160

136161
<!-- /BACKERS -->
137162

138-
139163
<!-- LICENSE/ -->
140164

141-
<h2>License</h2>
165+
## License
142166

143167
Unless stated otherwise all works are:
144168

145-
<ul><li>Copyright &copy; <a href="https://github.com/balupton">Benjamin Lupton</a></li></ul>
169+
- Copyright &copy; [Benjamin Lupton](https://balupton.com)
146170

147171
and licensed under:
148172

149-
<ul><li><a href="http://spdx.org/licenses/Artistic-2.0.html">Artistic License 2.0</a></li></ul>
173+
- [Artistic License 2.0](http://spdx.org/licenses/Artistic-2.0.html)
150174

151175
<!-- /LICENSE -->

0 commit comments

Comments
 (0)