Skip to content

Commit

Permalink
Merge pull request #27 from Arkoniak/fix_lastflush
Browse files Browse the repository at this point in the history
fix int bug
  • Loading branch information
Arkoniak authored Aug 9, 2021
2 parents 10f25d9 + 28a191e commit 960dd72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MiniLoggers"
uuid = "93f3dd0f-005d-4452-894a-a31841fa4078"
authors = ["Andrey Oskin"]
version = "0.3.1"
version = "0.3.2"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand Down
2 changes: 1 addition & 1 deletion src/minilogger.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ struct MiniLogger{AM <: AbstractMode, IOT1 <: IO, IOT2 <: IO, DFT <: DateFormat}
dtformat::DFT
mode::AM
flush_threshold::Int
lastflush::Base.RefValue{Int}
lastflush::Base.RefValue{Int64}
end

getio(io, append) = io
Expand Down

2 comments on commit 960dd72

@Arkoniak
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/42505

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.3.2 -m "<description of version>" 960dd724807d0939d85dfbdffbf081e96c9b9326
git push origin v0.3.2

Please sign in to comment.