Skip to content
This repository was archived by the owner on Feb 18, 2025. It is now read-only.

Commit

Permalink
release v0.13.0 (#23)
Browse files Browse the repository at this point in the history
* release v0.13.0

* remove tests
  • Loading branch information
0xAleksaOpacic authored Sep 3, 2024
1 parent d016feb commit 7c92c16
Show file tree
Hide file tree
Showing 17 changed files with 173 additions and 8,307 deletions.
64 changes: 64 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
---
name: "\U0001F41E Bug report"
about: Report a bug or problem
labels: Bug
---

# 🐞 Bug Report

### Description

<!-- ✍️--> A clear and concise description of the problem...

<pre>
<code>

</code>
</pre>

### Has this worked before in a previous version?

<!-- Did this behavior use to work in the previous version? -->
Yes, the previous version in which this bug was not present was:

<pre>
<code>

</code>
</pre>

## 🔬 Minimal Reproduction

<!-- ✍️--> Please let us know how we can reproduce this issue.
<pre>
<code>

</code>
</pre>

## 🔥 Error
<!-- ✍️--> If the issue is accompanied by an error, please share the error logs with us below. If you have a lot of logs, place make a paste bin with your logs and share the link with us here:

<pre><code>


</code></pre>


## 🌍 Your Environment

**Operating System:**

<pre>
<code>

</code>
</pre>

**Anything else relevant?**

<pre>
<code>

</code>
</pre>
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: "✨ Feature Request"
about: Suggest a new feature or enhancement
labels: Enhancement
---

# ✨ Feature Request

### Description

<!-- ✍️--> A clear and concise description of the feature you would like to see...

<pre>
<code>

</code>
</pre>

### Use Case

<!-- ✍️--> Explain the context and how this feature will be used...

<pre>
<code>

</code>
</pre>
12 changes: 12 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Description

Please provide a detailed description of what was done in this PR

# Changes include

- [ ] Bugfix (non-breaking change that solves an issue)
- [ ] New feature (non-breaking change that adds functionality)

### Manual tests

Please complete this section if you ran manual tests for this functionality, otherwise delete it
29 changes: 29 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Format

on:
pull_request:
branches:
- main

jobs:
format:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm install

- name: Run Format
run: npm run format
29 changes: 29 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Lint

on:
pull_request:
branches:
- main

jobs:
lint:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm install

- name: Run Lint
run: npm run lint
12 changes: 6 additions & 6 deletions package-lock.json

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

10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nilfoundation/hardhat-plugin",
"version": "0.12.2",
"version": "0.13.0",
"description": "Custom Hardhat plugin to enable seamless deployment and interaction with applications within =nil;",
"repository": {
"type": "git",
Expand All @@ -14,14 +14,16 @@
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"lint": "biome check src",
"lint:fix": "biome check --write src"
"format": "biome format ./src",
"lint": "biome check ./src",
"fix:format": "biome format --write ./src",
"fix:lint": "biome check --apply ./src"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@nilfoundation/niljs": "^0.12.0",
"@nilfoundation/niljs": "^0.13.0",
"ethers": "^6.12.1",
"hardhat": "^2.22.4",
"viem": "^2.16.3"
Expand Down
3 changes: 0 additions & 3 deletions tests/.env

This file was deleted.

6 changes: 0 additions & 6 deletions tests/.gitignore

This file was deleted.

21 changes: 0 additions & 21 deletions tests/contracts/Incrementer.sol

This file was deleted.

Loading

0 comments on commit 7c92c16

Please sign in to comment.