Skip to content

Commit 70341fa

Browse files
committed
Fixing some references and add CI badge
1 parent d868007 commit 70341fa

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ jobs:
7272
prerelease: false
7373
body: |
7474
Release version ${{ steps.version.outputs.VERSION }} of concurrent-pqueue.
75-
75+
7676
## What's Changed
77-
78-
See the [CHANGELOG](https://github.com/willbuckner/pqueue/blob/main/README.md#changelog) for details.
79-
77+
78+
See the [CHANGELOG](https://github.com/dwayn/pqueue/blob/main/README.md#changelog) for details.
79+
8080
## Installation
81-
81+
8282
```toml
8383
[dependencies]
8484
concurrent-pqueue = "${{ steps.version.outputs.VERSION }}"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
[![Crates.io](https://img.shields.io/crates/v/concurrent-pqueue.svg)](https://crates.io/crates/concurrent-pqueue)
44
[![Documentation](https://docs.rs/concurrent-pqueue/badge.svg)](https://docs.rs/concurrent-pqueue)
5+
[![CI](https://github.com/dwayn/pqueue/workflows/CI/badge.svg)](https://github.com/dwayn/pqueue/actions/workflows/ci.yml)
56
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE.txt)
67

78
A high-performance, thread-safe priority queue implementation in Rust with support for dynamic priority updates. Designed for scenarios where you need to efficiently manage prioritized items with the ability to update priorities after insertion.

pqueue/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ rust-version = "1.70"
66
description = "A high-performance, thread-safe priority queue with dynamic priority updates"
77
license = "MIT"
88
authors = ["Dwayn Matthies <dwayn.matthies@gmail.com>"]
9-
repository = "https://github.com/willbuckner/pqueue"
9+
repository = "https://github.com/dwayn/pqueue"
1010
keywords = ["priority-queue", "concurrent", "thread-safe", "data-structures"]
1111
categories = ["data-structures", "concurrency"]
1212
readme = "../README.md"

0 commit comments

Comments
 (0)