Skip to content

Commit 2f0ee43

Browse files
committed
v6.2.0 - boundation, changelog, version bump
1 parent 2488eee commit 2f0ee43

File tree

6 files changed

+604
-982
lines changed

6 files changed

+604
-982
lines changed

.github/workflows/bevry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- run: npm run our:compile
6767
- run: npm run our:meta
6868
- name: publish to npm
69-
uses: bevry-actions/[email protected].2
69+
uses: bevry-actions/[email protected].3
7070
with:
7171
npmAuthToken: ${{ secrets.NPM_AUTH_TOKEN }}
7272
npmBranchTag: ':next'

HISTORY.md

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

3+
## v6.2.0 2023 December 27
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
## v6.1.0 2023 December 6
49

510
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation)

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; 2018+ <a href="https://balupton.com">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: 68 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<!-- TITLE/ -->
22

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

55
<!-- /TITLE -->
66

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

109
<span class="badge-githubworkflow"><a href="https://github.com/bevry/unbounded/actions?query=workflow%3Abevry" title="View the status of this project's GitHub Workflow: bevry"><img src="https://github.com/bevry/unbounded/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
Function.prototype.bind replacement that provides an `unbounded` hidden property on the returned bounded function, that contains the original unbounded function
@@ -81,92 +79,83 @@ equal(boundedFunction.unbounded, myFunction, 'unbounded was correct')
8179

8280
<!-- INSTALL/ -->
8381

84-
<h2>Install</h2>
82+
## Install
83+
84+
### [npm](https://npmjs.com "npm is a package manager for javascript")
8585

86-
<a href="https://npmjs.com" title="npm is a package manager for javascript"><h3>npm</h3></a>
87-
<ul>
88-
<li>Install: <code>npm install --save unbounded</code></li>
89-
<li>Import: <code>import * as pkg from ('unbounded')</code></li>
90-
<li>Require: <code>const pkg = require('unbounded')</code></li>
91-
</ul>
86+
- Install: `npm install --save unbounded`
87+
- Import: `import * as pkg from ('unbounded')`
88+
- Require: `const pkg = require('unbounded')`
9289

93-
<a href="https://deno.land" title="Deno is a secure runtime for JavaScript and TypeScript, it is an alternative for Node.js"><h3>Deno</h3></a>
90+
### [Deno](https://deno.land "Deno is a secure runtime for JavaScript and TypeScript, it is an alternative for Node.js")
9491

9592
``` typescript
96-
import * as pkg from 'https://unpkg.com/unbounded@^6.1.0/edition-deno/index.ts'
93+
import * as pkg from 'https://unpkg.com/unbounded@^6.2.0/edition-deno/index.ts'
9794
```
98-
99-
<a href="https://www.skypack.dev" title="Skypack is a JavaScript Delivery Network for modern web apps"><h3>Skypack</h3></a>
95+
### [Skypack](https://www.skypack.dev "Skypack is a JavaScript Delivery Network for modern web apps")
10096

10197
``` html
10298
<script type="module">
103-
import * as pkg from '//cdn.skypack.dev/unbounded@^6.1.0'
99+
import * as pkg from '//cdn.skypack.dev/unbounded@^6.2.0'
104100
</script>
105101
```
106-
107-
<a href="https://unpkg.com" title="unpkg is a fast, global content delivery network for everything on npm"><h3>unpkg</h3></a>
102+
### [unpkg](https://unpkg.com "unpkg is a fast, global content delivery network for everything on npm")
108103

109104
``` html
110105
<script type="module">
111-
import * as pkg from '//unpkg.com/unbounded@^6.1.0'
106+
import * as pkg from '//unpkg.com/unbounded@^6.2.0'
112107
</script>
113108
```
114-
115-
<a href="https://jspm.io" title="Native ES Modules CDN"><h3>jspm</h3></a>
109+
### [jspm](https://jspm.io "Native ES Modules CDN")
116110

117111
``` html
118112
<script type="module">
119-
import * as pkg from '//dev.jspm.io/unbounded@6.1.0'
113+
import * as pkg from '//dev.jspm.io/unbounded@6.2.0'
120114
</script>
121115
```
122-
123-
<h3><a href="https://editions.bevry.me" title="Editions are the best way to produce and consume packages you care about.">Editions</a></h3>
124-
125-
<p>This package is published with the following editions:</p>
126-
127-
<ul><li><code>unbounded</code> aliases <code>unbounded/index.cjs</code> which uses the <a href="https://github.com/bevry/editions" title="You can use the Editions Autoloader to autoload the appropriate edition for your consumers environment">Editions Autoloader</a> to automatically select the correct edition for the consumer's environment</li>
128-
<li><code>unbounded/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>
129-
<li><code>unbounded/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>
130-
<li><code>unbounded/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> 21 with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li>
131-
<li><code>unbounded/edition-es5/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 ES5 for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 4 with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li>
132-
<li><code>unbounded/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> 21 with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li>
133-
<li><code>unbounded/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>
134-
<li><code>unbounded/edition-deno/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 made to be compatible with <a href="https://deno.land" title="Deno is a secure runtime for JavaScript and TypeScript, it is an alternative to Node.js">Deno</a></li></ul>
116+
### [Editions](https://editions.bevry.me "Editions are the best way to produce and consume packages you care about.")
117+
118+
This package is published with the following editions:
119+
- `unbounded` aliases `unbounded/index.cjs` which uses the [Editions Autoloader](https://github.com/bevry/editions "You can use the Editions Autoloader to autoload the appropriate edition for your consumers environment") to automatically select the correct edition for the consumer's environment
120+
- `unbounded/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
121+
- `unbounded/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
122+
- `unbounded/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") 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with [Require](https://nodejs.org/dist/latest-v5.x/docs/api/modules.html "Node/CJS Modules") for modules
123+
- `unbounded/edition-es5/index.js` is [TypeScript](https://www.typescriptlang.org/ "TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.") compiled against ES5 for [Node.js](https://nodejs.org "Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine") 4 || 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with [Require](https://nodejs.org/dist/latest-v5.x/docs/api/modules.html "Node/CJS Modules") for modules
124+
- `unbounded/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") 12 || 14 || 16 || 18 || 20 || 21 with [Import](https://babeljs.io/docs/learn-es2015/#modules "ECMAScript Modules") for modules
125+
- `unbounded/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
126+
- `unbounded/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")
135127

136128
<!-- /INSTALL -->
137129

138-
139130
<!-- HISTORY/ -->
140131

141-
<h2>History</h2>
132+
## History
142133

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

145136
<!-- /HISTORY -->
146137

138+
<!-- BACKERS/ -->
147139

148-
<!-- CONTRIBUTE/ -->
149-
150-
<h2>Contribute</h2>
151-
152-
<a href="https://github.com/bevry/unbounded/blob/master/CONTRIBUTING.md#files">Discover how you can contribute by heading on over to the <code>CONTRIBUTING.md</code> file.</a>
140+
## Backers
153141

154-
<!-- /CONTRIBUTE -->
142+
### Code
155143

144+
[Discover how to contribute via the `CONTRIBUTING.md` file.](https://github.com/bevry/unbounded/blob/HEAD/CONTRIBUTING.md#files)
156145

157-
<!-- BACKERS/ -->
146+
#### Authors
158147

159-
<h2>Backers</h2>
148+
- [Benjamin Lupton](https://balupton.com) — Accelerating collaborative wisdom.
160149

161-
<h3>Maintainers</h3>
150+
#### Maintainers
162151

163-
These amazing people are maintaining this project:
152+
- [Benjamin Lupton](https://github.com/balupton) — Accelerating collaborative wisdom.
164153

165-
<ul><li><a href="https://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/unbounded/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/unbounded">view contributions</a></li></ul>
154+
#### Contributors
166155

167-
<h3>Sponsors</h3>
156+
- [Benjamin Lupton](https://github.com/balupton)[view contributions](https://github.com/bevry/unbounded/commits?author=balupton "View the GitHub contributions of Benjamin Lupton on repository bevry/unbounded")
168157

169-
No sponsors yet! Will you be the first?
158+
### Finances
170159

171160
<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>
172161
<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>
@@ -177,27 +166,45 @@ No sponsors yet! Will you be the first?
177166
<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>
178167
<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>
179168

180-
<h3>Contributors</h3>
181-
182-
These amazing people have contributed code to this project:
183-
184-
<ul><li><a href="https://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/unbounded/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/unbounded">view contributions</a></li></ul>
185-
186-
<a href="https://github.com/bevry/unbounded/blob/master/CONTRIBUTING.md#files">Discover how you can contribute by heading on over to the <code>CONTRIBUTING.md</code> file.</a>
169+
#### Sponsors
170+
171+
- [Andrew Nesbitt](https://nesbitt.io) — Software engineer and researcher
172+
- [Balsa](https://balsa.com) — We're Balsa, and we're building tools for builders.
173+
- [Codecov](https://codecov.io/) — Empower developers with tools to improve code quality and testing.
174+
- [Poonacha Medappa](https://poonachamedappa.com)
175+
- [Rob Morris](https://github.com/Rob-Morris)
176+
- [Sentry](https://sentry.io) — Real-time crash reporting for your web apps, mobile apps, and games.
177+
- [Syntax](https://syntax.fm) — Syntax Podcast
178+
179+
#### Donors
180+
181+
- [Andrew Nesbitt](https://nesbitt.io)
182+
- [Balsa](https://balsa.com)
183+
- [Chad](https://opencollective.com/chad8)
184+
- [Codecov](https://codecov.io/)
185+
- [entroniq](https://gitlab.com/entroniq)
186+
- [Jean-Luc Geering](https://github.com/jlgeering)
187+
- [Michael Duane Mooring](https://mdm.cc)
188+
- [Mohammed Shah](https://github.com/smashah)
189+
- [Poonacha Medappa](https://poonachamedappa.com)
190+
- [Rob Morris](https://github.com/Rob-Morris)
191+
- [Sentry](https://sentry.io)
192+
- [ServieJS](https://github.com/serviejs)
193+
- [Skunk Team](https://skunk.team)
194+
- [Syntax](https://syntax.fm)
187195

188196
<!-- /BACKERS -->
189197

190-
191198
<!-- LICENSE/ -->
192199

193-
<h2>License</h2>
200+
## License
194201

195202
Unless stated otherwise all works are:
196203

197-
<ul><li>Copyright &copy; 2018+ <a href="https://balupton.com">Benjamin Lupton</a></li></ul>
204+
- Copyright &copy; [Benjamin Lupton](https://balupton.com)
198205

199206
and licensed under:
200207

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

203210
<!-- /LICENSE -->

0 commit comments

Comments
 (0)