Skip to content

Commit

Permalink
transitioned to AbstractTensors v0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
chakravala committed Jul 9, 2020
1 parent 1bb3887 commit e85af82
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Reduce"
uuid = "93e0c654-6965-5f22-aba9-9c1ae6b3c259"
authors = ["Michael Reed"]
version = "1.2.6"
version = "1.2.7"

[deps]
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
Expand All @@ -16,7 +16,7 @@ julia = "1"
ForceImport = "0"
SyntaxTree = "1"
ReplMaker = "0"
AbstractTensors = "0.4.1, 2"
AbstractTensors = "0.5"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
2 changes: 1 addition & 1 deletion src/parser.jl
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ end
elseif expr.head == :(::)
show_expr(io,expr.args[1])
elseif expr.head == :macrocall
if expr.args[1] == Symbol("@big_str") || expr.args[1] == Symbol("@int128_str")
if expr.args[1] (Symbol("@big_str"),Symbol("@int128_str"),Expr(:.,:Core,QuoteNode(Symbol("@big_str"))),Expr(:.,:Core,QuoteNode(Symbol("@int128_str"))))
print(io,expr.args[end])
else
throw(ReduceError("Macro $(expr.args[1]) block structure not supported\n\n$expr"))
Expand Down

2 comments on commit e85af82

@chakravala
Copy link
Owner Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@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/17700

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

Please sign in to comment.