Skip to content

Commit

Permalink
Drop deprecations (#130)
Browse files Browse the repository at this point in the history
* Drop deprecations

* Set project version to 0.8.0
  • Loading branch information
omus authored Jul 23, 2024
1 parent 4175e27 commit 185778a
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 77 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ keywords = ["testing", "mocking"]
license = "MIT"
desc = "Allows Julia function calls to be temporarily overloaded for purpose of testing"
author = ["Curtis Vogt"]
version = "0.7.9"
version = "0.8.0"

[deps]
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
Expand Down
1 change: 0 additions & 1 deletion src/Mocking.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ include("dispatch.jl")
include("debug.jl")
include("patch.jl")
include("mock.jl")
include("deprecated.jl")

# Create the initial definition of `activated` which defaults having Mocking be deactivated.
# We utilize method invalidation as a feature here to allow functions using `@mock` to be
Expand Down
45 changes: 0 additions & 45 deletions src/deprecated.jl

This file was deleted.

29 changes: 0 additions & 29 deletions test/activate.jl

This file was deleted.

1 change: 0 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,5 @@ Mocking.activate()
include("nested_apply.jl")
include("async-scope.jl")
include("issues.jl")
include("activate.jl")
include("async-world-ages.jl")
end

2 comments on commit 185778a

@omus
Copy link
Member Author

@omus omus commented on 185778a Jul 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/111635

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.8.0 -m "<description of version>" 185778ac96a1b1a8f94a049bed471cdf690e86ef
git push origin v0.8.0

Please sign in to comment.