Skip to content

Commit

Permalink
Bump BufferedStreams to 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Drvi committed Jun 14, 2023
1 parent f81012f commit 548017c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ keywords = ["protobuf", "protoc"]
license = "MIT"
desc = "Julia protobuf implementation"
authors = ["Tomáš Drvoštěp <tomas.drvostep@gmail.com>"]
version = "1.0.10"
version = "1.0.11"

[deps]
BufferedStreams = "e1450e63-4bb3-523b-b2a4-4ffa8c0fd77d"
Expand All @@ -14,7 +14,7 @@ TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
TranscodingStreams = "3bb67fe8-82b1-5028-8e26-92a6c54297fa"

[compat]
BufferedStreams = "1.1"
BufferedStreams = "1.2"
EnumX = "1"
TranscodingStreams = "0.9"
julia = "1.6"
Expand Down
5 changes: 0 additions & 5 deletions src/ProtoBuf.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ import TranscodingStreams
import BufferedStreams
using TOML

#TODO: This has to be removed, but is needed until
# https://github.com/JuliaIO/BufferedStreams.jl/pull/67
# is merged.
Base.position(x::BufferedStreams.BufferedOutputStream) = max(0, position(x.sink) + x.position - 1)

# TODO:
# - Services & RPC
# - Support proper julia package generation when proto packages share a dependency
Expand Down

4 comments on commit 548017c

@Drvi
Copy link
Collaborator Author

@Drvi Drvi commented on 548017c Jun 14, 2023

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

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.0.11 -m "<description of version>" 548017cb69778cb5f0cd1273b16507f81d64719e
git push origin v1.0.11

Also, note the warning: Version 1.0.11 skips over 1.0.10
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

@Drvi
Copy link
Collaborator Author

@Drvi Drvi commented on 548017c Jun 14, 2023

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 updated: JuliaRegistries/General/85564

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.0.11 -m "<description of version>" 548017cb69778cb5f0cd1273b16507f81d64719e
git push origin v1.0.11

Please sign in to comment.