From d0cf48136195cf5e7e0f784e1be6539bd9e3e8db Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Wed, 10 Jan 2024 14:20:40 +0100 Subject: [PATCH] chore: exclude useless directories --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4967b86b..5657066a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.1](https://github.com/foundry-rs/compilers/releases/tag/v0.2.1) - 2024-01-10 + +### Miscellaneous Tasks + +- Exclude useless directories + ## [0.2.0](https://github.com/foundry-rs/compilers/releases/tag/v0.2.0) - 2024-01-10 ### Dependencies - [deps] Bump alloy ([#42](https://github.com/foundry-rs/compilers/issues/42)) +### Miscellaneous Tasks + +- Release 0.2.0 + ## [0.1.4](https://github.com/foundry-rs/compilers/releases/tag/v0.1.4) - 2024-01-06 ### Bug Fixes diff --git a/Cargo.toml b/Cargo.toml index 31c42b57..0048d27d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "foundry-compilers" authors = ["Foundry Maintainers"] -version = "0.2.0" +version = "0.2.1" rust-version = "1.65" readme = "README.md" license = "MIT OR Apache-2.0" @@ -11,7 +11,7 @@ documentation = "https://docs.rs/foundry-compilers" description = "Utilities for working with solidity compilers, namely solc" keywords = ["foundry", "solidity", "solc", "ethereum", "ethers"] edition = "2021" -exclude = [".github/", "sccripts/", "test-data/"] +exclude = [".github/", "scripts/", "test-data/"] [package.metadata.docs.rs] all-features = true