Skip to content

Commit 487ca24

Browse files
committed
Bump version: 0.3.0 → 0.3.1
1 parent b792636 commit 487ca24

8 files changed

Lines changed: 11 additions & 11 deletions

File tree

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.3.0
2+
current_version = 0.3.1
33

44
[bumpversion:file:Cargo.toml]
55
search = version = "{current_version}"

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 = "duckduckgo"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Mahmoud Harmouch <oss@wiseai.dev>"]
55
edition = "2024"
66
description = "🦆 A CLI, TUI, and SDK for instant DuckDuckGo searches."

PACKAGING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The `debian/` directory handles building `.deb` packages using standard `debhelp
1919
```
2020
1. Install the generated package:
2121
```sh
22-
sudo dpkg -i ../ddg-rs_0.3.0-1_amd64.deb
22+
sudo dpkg -i ../ddg-rs_0.3.1-1_amd64.deb
2323
```
2424

2525
## RedHat/Fedora (.rpm)
@@ -39,13 +39,13 @@ The `rpm/` directory manages `.rpm` package configurations through the `ddg-rs.s
3939
```
4040
1. Archive the module and place it into the `SOURCES` directory:
4141
```sh
42-
tar -czvf ~/rpmbuild/SOURCES/ddg-rs-0.3.0.tar.gz .
42+
tar -czvf ~/rpmbuild/SOURCES/ddg-rs-0.3.1.tar.gz .
4343
```
4444
1. Build the RPM:
4545
```sh
4646
rpmbuild -bb ~/rpmbuild/SPECS/ddg-rs.spec
4747
```
4848
1. Install the built RPM:
4949
```sh
50-
sudo dnf install ~/rpmbuild/RPMS/x86_64/ddg-rs-0.3.0-1.x86_64.rpm
50+
sudo dnf install ~/rpmbuild/RPMS/x86_64/ddg-rs-0.3.1-1.x86_64.rpm
5151
```

debian/changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ddg-rs (0.3.0-1) unstable; urgency=medium
1+
ddg-rs (0.3.1-1) unstable; urgency=medium
22

33
* Initial release.
44

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ddg-rs",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"main": "index.js",
55
"types": "index.d.ts",
66
"bin": {

python/ddg/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from ._ddg import * # noqa: F401, F403
22

3-
__version__ = "0.3.0"
3+
__version__ = "0.3.1"

rpm/ddg-rs.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%global debug_package %{nil}
22

33
Name: duckduckgo
4-
Version: 0.3.0
4+
Version: 0.3.1
55
Release: 1%{?dist}
66
Summary: A CLI, TUI, and SDK for instant DuckDuckGo searches
77
License: MIT
@@ -37,5 +37,5 @@ install -Dpm 0644 README.md -t %{buildroot}%{_docdir}/%{name}/
3737
%{_bindir}/ddg
3838

3939
%changelog
40-
* Mon Apr 20 2026 Mahmoud Harmouch <oss@wiseai.dev> - 0.3.0-1
40+
* Mon Apr 20 2026 Mahmoud Harmouch <oss@wiseai.dev> - 0.3.1-1
4141
- Initial release

0 commit comments

Comments
 (0)