From 7184cf1b5d0691aa5be87feb79ad42ef03d8c2b9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 11:39:44 +0200 Subject: [PATCH] chore(main): release 2.0.0 (#33) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 17 +++++++++++++++++ lib/itax_code/version.rb | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34efbaf..a111796 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [2.0.0](https://github.com/matteoredz/itax-code/compare/v1.0.1...v2.0.0) (2023-10-01) + + +### ⚠ BREAKING CHANGES + +* remove Validator and merge its logic into Parser ([#32](https://github.com/matteoredz/itax-code/issues/32)) +* remove data hash argument from ItaxCode.valid? and ItaxCode::Validator#valid? ([#30](https://github.com/matteoredz/itax-code/issues/30)) + +### Bug Fixes + +* remove data hash argument from ItaxCode.valid? and ItaxCode::Validator#valid? ([#30](https://github.com/matteoredz/itax-code/issues/30)) ([997f8b0](https://github.com/matteoredz/itax-code/commit/997f8b0b9f4bc00012475950a84465bf06b73a52)) + + +### Code Refactoring + +* remove Validator and merge its logic into Parser ([#32](https://github.com/matteoredz/itax-code/issues/32)) ([348bdd0](https://github.com/matteoredz/itax-code/commit/348bdd003d1709b0dd2d41e58b0307a1b8e23ab1)) + ## [1.0.1](https://github.com/matteoredz/itax-code/compare/v1.0.0...v1.0.1) (2023-08-31) diff --git a/lib/itax_code/version.rb b/lib/itax_code/version.rb index a744dae..5ac6071 100644 --- a/lib/itax_code/version.rb +++ b/lib/itax_code/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ItaxCode - VERSION = "1.0.1" + VERSION = "2.0.0" end