Skip to content

Commit

Permalink
version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aviatesk committed Apr 5, 2021
1 parent cabe156 commit 65e3e5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "JET"
uuid = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
authors = ["Shuhei Kadowaki <aviatesk@gmail.com>"]
version = "0.0.0"
version = "0.1.0"

[deps]
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
Expand All @@ -12,6 +12,7 @@ Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Revise = "295af30f-e4ad-537b-8983-00126c2a3abe"

[compat]
JuliaInterpreter = "0.8.8"
LoweredCodeUtils = "1.2.4"
MacroTools = "0.5.6"
Revise = "3.1.14"
Expand Down
2 changes: 1 addition & 1 deletion src/typeinfer.jl
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ function CC._typeinf(interp::JETInterpreter, frame::InferenceState)
end
push!(cache, AnalysisResult(linfo, given_argtypes, overridden_by_const, local_cache))
elseif frame.cached # only cache when `NativeInterpreter` does
@assert !haskey(JET_GLOBAL_CACHE, linfo) || isentry "invalid global caching $linfo"
# @assert !haskey(JET_GLOBAL_CACHE, linfo) || isentry "invalid global caching $linfo"
global_cache = InferenceErrorReportCache[]
for report in this_caches
# # TODO make this hold
Expand Down

2 comments on commit 65e3e5d

@aviatesk
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
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/33580

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.1.0 -m "<description of version>" 65e3e5d8359eaec99551f9f03edf3c430688505f
git push origin v0.1.0

Please sign in to comment.