Skip to content

Commit 743b54b

Browse files
committed
bump version to 1.1
1 parent 809d230 commit 743b54b

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ You can go to [Releases](https://github.com/p0358/usb_oc-dkms/releases) section
7777
#### Debian/Ubuntu/Mint/Pop_OS (.deb)
7878

7979
```console
80-
# curl -Lo /tmp/usb-oc-dkms.deb https://github.com/p0358/usb_oc-dkms/releases/download/v1.0/usb-oc-dkms_1.0_amd64.deb
80+
# curl -Lo /tmp/usb-oc-dkms.deb https://github.com/p0358/usb_oc-dkms/releases/download/v1.1/usb-oc-dkms_1.1_amd64.deb
8181
# apt install /tmp/usb-oc-dkms.deb
8282
```
8383

@@ -86,21 +86,21 @@ You can go to [Releases](https://github.com/p0358/usb_oc-dkms/releases) section
8686
AUR: [usb_oc-dkms](https://aur.archlinux.org/packages/usb_oc-dkms) or:
8787

8888
```console
89-
# curl -Lo /tmp/usb_oc-dkms.pkg.tar.zst https://github.com/p0358/usb_oc-dkms/releases/download/v1.0/usb_oc-dkms-1.0-1-any.pkg.tar.zst
89+
# curl -Lo /tmp/usb_oc-dkms.pkg.tar.zst https://github.com/p0358/usb_oc-dkms/releases/download/v1.1/usb_oc-dkms-1.1-1-any.pkg.tar.zst
9090
# pacman -U /tmp/usb_oc-dkms.pkg.tar.zst
9191
```
9292

9393
#### Fedora (.rpm)
9494

9595
```console
96-
# curl -Lo /tmp/usb_oc-dkms.rpm https://github.com/p0358/usb_oc-dkms/releases/download/v1.0/usb_oc-dkms-1.0-1.fc45.noarch.rpm
96+
# curl -Lo /tmp/usb_oc-dkms.rpm https://github.com/p0358/usb_oc-dkms/releases/download/v1.1/usb_oc-dkms-1.1-1.fc45.noarch.rpm
9797
# dnf install /tmp/usb_oc-dkms.rpm
9898
```
9999

100100
#### openSUSE (.rpm)
101101

102102
```console
103-
# curl -Lo /tmp/usb_oc-dkms.rpm https://github.com/p0358/usb_oc-dkms/releases/download/v1.0/usb_oc-dkms-1.0-1.fc45.noarch.rpm
103+
# curl -Lo /tmp/usb_oc-dkms.rpm https://github.com/p0358/usb_oc-dkms/releases/download/v1.1/usb_oc-dkms-1.1-1.fc45.noarch.rpm
104104
# zypper install --allow-unsigned-rpm /tmp/usb_oc-dkms.rpm
105105
```
106106

dkms.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PACKAGE_NAME="usb_oc"
2-
PACKAGE_VERSION="1.0"
2+
PACKAGE_VERSION="1.1"
33

44
BUILT_MODULE_NAME[0]="usb_oc"
55
BUILT_MODULE_LOCATION[0]=src

packaging/arch/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
_modulename=usb_oc
22
pkgname=${_modulename}-dkms
3-
pkgver=1.0
3+
pkgver=1.1
44
pkgrel=1
55
pkgdesc="Kernel module for overclocking USB devices"
66
arch=('any')

packaging/rpm/usb_oc-dkms.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%global debug_package %{nil}
33
%endif
44
%global dkms_name usb_oc
5-
%global version 1.0
5+
%global version 1.1
66

77
Name: %{dkms_name}-dkms
88
Version: %{version}

src/usb_oc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
MODULE_LICENSE("GPL");
77
MODULE_AUTHOR("p0358");
88
MODULE_DESCRIPTION("Filter kernel module to set the polling rate of select USB devices to a custom value.");
9-
MODULE_VERSION("1.0");
9+
MODULE_VERSION("1.1");
1010

1111
/* A struct associated with the interrupt_interval_override module parameter, representing
1212
an user's choice to force a specific interrupt interval upon all interrupt endpoints of

0 commit comments

Comments
 (0)