Skip to content

Commit

Permalink
V1.2.1a (#536)
Browse files Browse the repository at this point in the history
* Deprecate functions not supported in SymPyCore

* deprecate True, False

* WIP

* t/f

* work out true/false

* deprecate True in favor of Sym(true)

* punt on T/F deprecation

* add back

* comment on deprecations

* upper bound for CommonEq
  • Loading branch information
jverzani authored Nov 15, 2023
1 parent d7610a5 commit b336fd7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name = "SymPy"
uuid = "24249f21-da20-56a4-8eb1-6a02cf4ae2e6"
version = "1.2.0"
version = "1.2.1"


[deps]
CommonEq = "3709ef60-1bee-4518-9f2f-acd86f176c50"
Expand All @@ -19,9 +20,11 @@ SymbolicUtils = "d1185830-fcd6-423d-90d6-eec64667417b"
SymPySymbolicUtilsExt = "SymbolicUtils"

[compat]
CommonEq = "0.2"
CommonEq = "=0.2.0"
CommonSolve = "0.2"
Latexify = "0.15, 0.16"
LinearAlgebra = "<0.0.1, 1"
Markdown = "<0.0.1, 1"
PyCall = "1.91"
RecipesBase = "0.7, 0.8, 1.0, 1.1"
SpecialFunctions = "0.8, 0.9, 0.10, 1.0, 2"
Expand Down

2 comments on commit b336fd7

@jverzani
Copy link
Collaborator Author

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/95399

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 v1.2.1 -m "<description of version>" b336fd74633e3226705a456b3a4328aa8961d4a5
git push origin v1.2.1

Please sign in to comment.