1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2025-08-08 08:33:56 +02:00

Compare commits

...

2 Commits

Author SHA1 Message Date
cn
8f7a796e9d release: 3.10.0 2024-01-18 23:19:49 +01:00
cn
81dc2aba4c gem: support Ruby 3.3 2024-01-18 23:12:23 +01:00
3 changed files with 12 additions and 1 deletions

View File

@@ -21,6 +21,7 @@ jobs:
- '3.0'
- '3.1'
- '3.2'
- '3.3'
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}

View File

@@ -1,5 +1,15 @@
# Changelog
## 3.10.0 (January 18th, 2024)
IMPROVEMENTS:
- add Ruby 3.3 support
OTHER:
- update base of Docker image to Alpine 3.19.0 (from 3.18.3 before)
## 3.9.2 (August 10th, 2023)
OTHER:

View File

@@ -1,5 +1,5 @@
# frozen_string_literal: true
module Dyndnsd
VERSION = '3.9.2'
VERSION = '3.10.0'
end