Skip to content

Commit 9821df9

Browse files
committed
chore: bump version to v1.0.1
1 parent faa3ca1 commit 9821df9

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ghgrab"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
edition = "2021"
55
authors = ["abhixdd"]
66
description = "A TUI-based tool to download specific files or folders from GitHub repositories"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ghgrab/ghgrab",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A terminal-based tool for downloading specific files and folders from GitHub repositories",
55
"bin": {
66
"ghgrab": "bin/ghgrab.js"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "ghgrab"
7-
version = "1.0.0"
7+
version = "1.0.1"
88
description = "Download specific files and folders from GitHub repositories without cloning"
99
authors = [{name = "abhixdd"}]
1010
license = {text = "MIT"}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import platform
88
from pathlib import Path
99

10-
VERSION = "1.0.0"
10+
VERSION = "1.0.1"
1111

1212
def get_platform_info():
1313
system = platform.system().lower()

src/github.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ pub struct GitHubClient {
228228
impl GitHubClient {
229229
pub fn new(token: Option<String>) -> Result<Self> {
230230
let client = reqwest::Client::builder()
231-
.user_agent("ghgrab/1.0.0")
231+
.user_agent("ghgrab/1.0.1")
232232
.build()
233233
.context("Failed to create HTTP client")?;
234234
Ok(GitHubClient { client, token })

0 commit comments

Comments
 (0)