Skip to content

Commit

Permalink
Release 0.40.2
Browse files Browse the repository at this point in the history
  • Loading branch information
weppos committed Jul 23, 2024
1 parent 340fa9c commit 1bb7dc3
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,38 @@
# CHANGELOG

## 0.40.2

- CHANGED: Definition updates.


## 0.40.0

- CHANGED: Dropped Go < 1.21 from the list of supported versions.
- CHANGED: Definition updates.


## 0.30.2

- CHANGED: Definition updates.


## 0.30.1

- CHANGED: Definition updates.


## 0.30.0

- CHANGED: Dropped Go < 1.16 from the list of supported versions to fix "package embed is not in GOROOT". "embed" is an indirect dependency and it's only available since Go 1.16.

- CHANGED: Exported defaultListVersion as ListVersion (GH-334, GH-880)


## 0.20.0

- CHANGED: Definition updates.


## 0.15.0

- CHANGED: Definition updates.
Expand All @@ -31,26 +41,32 @@

- ENHANCEMENT: Improved performances by using rune instead of strings single char comparison (GH-484, GH-485)


## 0.14.0

- CHANGED: Added go modules (GH-240).


## 0.13.0

- CHANGED: Rollback changes of v0.12.0. It turns out it is actually causing more issues.


## 0.12.0

- CHANGED: Extracted generator into its own package.


## 0.11.0

- CHANGED: Definition updates.


## 0.10.0

- ENHANCEMENT: Internal refactoring to use go gen when building definition list.


## 0.5.0

- FIXED: Added a DefaultRules() function that can be used to create a new list without modifying the default one (GH-141, GH-170). Thanks @guliyevemil1
Expand All @@ -59,26 +75,31 @@

- CHANGED: Removed unreachable code (GH-167)


## 0.4.0

- CHANGED: Definition updates.

- ENHANCEMENT: gen tool now uses GitHub API instead of scraping GitHub UI (GH-93).


## 0.3.2

- CHANGED: Definition updates.


## 0.3.1

- CHANGED: Definition updates.


## 0.3.0

- CHANGED: Definition updates.

- ENHANCEMENT: Changed internal representation of PSL rules to be A-label encoded, as well the public interface of the library to use ASCII-encoded names by default (GH-31, GH-40).


## 0.2.0

- CHANGED: Definition updates.
Expand All @@ -87,6 +108,7 @@

- ENHANCEMENT: List.Find() now returns a pointer to a Rule, and not a Rule. That's because Find() can actually return `nil` if the DefaultRule find option is set. This is useful if you need to avoid the fallback to the default rule "*".


## 0.1.0

Initial version
2 changes: 1 addition & 1 deletion publicsuffix/publicsuffix.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const (
// Version identifies the current library version.
// This is a pro forma convention given that Go dependencies
// tends to be fetched directly from the repo.
Version = "0.40.1"
Version = "0.40.2"

// NormalType represents a normal rule such as "com"
NormalType = 1
Expand Down

0 comments on commit 1bb7dc3

Please sign in to comment.