Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Package registration #1

Closed
abraunst opened this issue Jan 18, 2023 · 25 comments
Closed

Package registration #1

abraunst opened this issue Jan 18, 2023 · 25 comments

Comments

@abraunst
Copy link
Owner

@JuliaRegistrator register

@JuliaRegistrator
Copy link

Registration pull request created: JuliaRegistries/General/75895

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>" b819f17aff5fce4d1fdc8c657a73fb5640670510
git push origin v0.1.0

@abraunst
Copy link
Owner Author

@JuliaRegistrator register

@JuliaRegistrator
Copy link

Registration pull request updated: JuliaRegistries/General/75895

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>" 477c6a1dc6652be9548a4eca27dd084973d3f09b
git push origin v0.1.0

@abraunst abraunst closed this as completed Feb 1, 2023
@abraunst
Copy link
Owner Author

@JuliaRegistrator register

@JuliaRegistrator
Copy link

Registration pull request created: JuliaRegistries/General/98707

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 v0.2.3 -m "<description of version>" 8724dcb37b97ec59d30c70d5d74917afc27b17a4
git push origin v0.2.3

@abraunst
Copy link
Owner Author

@JuliaRegistrator register

@JuliaRegistrator
Copy link

Registration pull request created: JuliaRegistries/General/103266

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.0.0 -m "<description of version>" 2b4fcb5995086da693e29e9f44c7bbf9ac776a8b
git push origin v1.0.0

@abraunst
Copy link
Owner Author

abraunst commented Apr 3, 2024

@JuliaRegistrator register

Release Notes:

This release just adds the function peek(e::ExponentialQueue) which samples from the queue without removing the event.

@JuliaRegistrator
Copy link

Registration pull request created: JuliaRegistries/General/104133

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.0.1 -m "<description of version>" 2d131045384607de8b7e553193e75215fa21b3df
git push origin v1.0.1

@abraunst
Copy link
Owner Author

abraunst commented Apr 6, 2024

@JuliaRegistrator register

Release Notes:

This release adds a ExponentialQueueDict type with Dict - type access to event rates

@JuliaRegistrator
Copy link

Registration pull request created: JuliaRegistries/General/104375

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

@abraunst
Copy link
Owner Author

@JuliaRegistrator register

Release Notes:

This release

  • Ddds a peekevent function which only samples the event and not the waiting time
  • Define new contructors for ExponentialQueue
  • Better show

@JuliaRegistrator
Copy link

Registration pull request created: JuliaRegistries/General/104610

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.1.1 -m "<description of version>" 75c79ed6194736f7827bb27cc9da969fe1a9c233
git push origin v1.1.1

@abraunst
Copy link
Owner Author

@JuliaRegistrator register

Release Notes:

In this release:

  • bugfix on remove!(::ExponentialQueueDict, i)
  • small ctor adjustments

@JuliaRegistrator
Copy link

Registration pull request created: JuliaRegistries/General/104841

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.1.2 -m "<description of version>" 5ab304ae0fea331efa9c0d57646405dc611b9904
git push origin v1.1.2

@abraunst
Copy link
Owner Author

@JuliaRegistrator register

Release Notes:

This release

  • The construction of ExponentialQueue is now identical to the one of ExponentialQueueDict, i.e. receiveing as argument a collection of pairs index => rate
  • iterate now iterates over index => rate
  • peek and pop! return pairs index => rate

@JuliaRegistrator
Copy link

Registration pull request created: JuliaRegistries/General/107055

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.0 -m "<description of version>" a3ef257833e70d41d3c0e309cd9689b233462900
git push origin v1.2.0

@abraunst
Copy link
Owner Author

abraunst commented Jun 3, 2024

@JuliaRegistrator register

Release Notes:

This release

  • Makes the interface of ExponentialQueue match the one of ExponentialQueueDict
  • Allow arbitrary collections and iterators as arguments to the ctors
  • Match the API of AbstractExponentialQueue{T} math the one of AbstractDict{T,Float64}

@JuliaRegistrator
Copy link

Registration pull request created: JuliaRegistries/General/108135

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>" 371eaffb8e7b2741045f7fd9026c02d66927aebc
git push origin v1.2.1

@abraunst
Copy link
Owner Author

abraunst commented Jun 3, 2024

@JuliaRegistrator register

Release Notes:

This release

Makes the interface of ExponentialQueue match the one of ExponentialQueueDict
Allow arbitrary collections and iterators as arguments to the ctors
Match the API of AbstractExponentialQueue{T} math the one of AbstractDict{T,Float64}

@JuliaRegistrator
Copy link

Registration pull request updated: JuliaRegistries/General/108135

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>" f1039752d9639b94532851ec76cc477f7cc6ad3a
git push origin v1.2.1

@abraunst
Copy link
Owner Author

abraunst commented Jun 4, 2024

@JuliaRegistrator register

Release Notes:

This release

Makes the interface of ExponentialQueue match the one of ExponentialQueueDict
Allow arbitrary collections and iterators as arguments to the ctors
Match the API of AbstractExponentialQueue{T} math the one of AbstractDict{T,Float64}

@JuliaRegistrator
Copy link

Registration pull request updated: JuliaRegistries/General/108135

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>" f1039752d9639b94532851ec76cc477f7cc6ad3a
git push origin v1.2.1

@abraunst
Copy link
Owner Author

@JuliaRegistrator register

Release Notes:

This release add the ability to use a lazy iterator for the source in cavity! and cavity. The iterator must have length and must be reversible.

@JuliaRegistrator
Copy link

Registration pull request created: JuliaRegistries/General/122813

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.2 -m "<description of version>" da3814059ed98d3f1efd5f97566830ec76e174f9
git push origin v1.2.2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants