Skip to content

Commit

Permalink
fix #2253 (#2357)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmckinna authored Apr 20, 2024
1 parent 90db673 commit e0d58fc
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ Deprecated names
_-_ ↦ _//_
```

* In `Algebra.Structures.Biased`:
```agda
IsRing* ↦ Algebra.Structures.IsRing
isRing* ↦ Algebra.Structures.isRing
```

* In `Data.Nat.Divisibility.Core`:
```agda
*-pres-∣ ↦ Data.Nat.Divisibility.*-pres-∣
Expand Down
12 changes: 12 additions & 0 deletions src/Algebra/Structures/Biased.agda
Original file line number Diff line number Diff line change
Expand Up @@ -262,5 +262,17 @@ Please use the standard `IsRing` instead."
#-}
{-# WARNING_ON_USAGE isRingWithoutAnnihilatingZero
"Warning: isRingWithoutAnnihilatingZero was deprecated in v2.0.
Please use the standard `isRing` instead."
#-}

-- Version 2.1

-- issue #2253
{-# WARNING_ON_USAGE IsRing*
"Warning: IsRing* was deprecated in v2.1.
Please use the standard `IsRing` instead."
#-}
{-# WARNING_ON_USAGE isRing*
"Warning: isRing* was deprecated in v2.1.
Please use the standard `isRing` instead."
#-}

0 comments on commit e0d58fc

Please sign in to comment.