Skip to content

Commit

Permalink
Merge pull request #4 from ethereumjs/new-release
Browse files Browse the repository at this point in the history
New Release v0.2.0
  • Loading branch information
acolytec3 committed Mar 6, 2024
2 parents df295ba + 7c822ad commit 175c1da
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 4 deletions.
21 changes: 21 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,23 @@
# Vim swap files
*.swp
.idea
.tmp

### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Output of 'npm pack'
*.tgz

### OSX ###
.DS_Store
.AppleDouble
.LSOverride

node_modules
dist
6 changes: 5 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,8 @@ vitest.config.browser.ts
tsconfig*
prettier*
.babelrc
test/*
.github
test/*
scripts/*
*.tgz
wasm/kzg.wasm
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
(modification: no type change headlines) and this project adheres to
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 0.2.0 - 2024-03-06

- Reuse WASM file for both ESM and CJS (build size), PR [#3](https://github.com/ethereumjs/kzg-wasm/pull/3)
- Fix a severe bug affecting the results of all exposed methods, PR [#3](https://github.com/ethereumjs/kzg-wasm/pull/3)

## 0.1.0 - 2024-02-28

Initial release of the library
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kzg-wasm",
"version": "0.1.0",
"version": "0.2.0",
"description": "",
"scripts": {
"build": "npm run build:ts && npm run transpileCJS && npm run fixRequire",
Expand Down

0 comments on commit 175c1da

Please sign in to comment.