Skip to content

Commit 815fd5b

Browse files
committed
Bump version to 1.10.6
1 parent 176063b commit 815fd5b

4 files changed

Lines changed: 40 additions & 2 deletions

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "awehttam/binkterm-php",
3-
"version": "1.10.5",
3+
"version": "1.10.6",
44
"description": "Multi-protocol BBS platform built around native FTN messaging, with a browser-based community interface, real-time event bus, and door game framework, accessible from browsers, Telnet/SSH, Gemini, QWK, AI assistants, and mesh radio nodes",
55
"type": "project",
66
"require": {

docs/UPGRADING_1.10.6.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Upgrading to 1.10.6
2+
3+
Make sure you have a current backup of your database and files before upgrading.
4+
5+
## Table of Contents
6+
7+
- [Summary of Changes](#summary-of-changes)
8+
- [Upgrade Instructions](#upgrade-instructions)
9+
- [From Git](#from-git)
10+
- [Using the Installer](#using-the-installer)
11+
12+
## Summary of Changes
13+
14+
<!--
15+
Group bullet points by major feature area as changes land during this release
16+
cycle. Each bullet should be self-contained: state what changed, why it matters,
17+
and what (if anything) the upgrader must do.
18+
-->
19+
20+
This release is in development. Feature-area details will be added here as
21+
changes are made.
22+
23+
---
24+
25+
## Upgrade Instructions
26+
27+
### From Git
28+
29+
```bash
30+
git pull
31+
php scripts/setup.php
32+
scripts/restart_daemons.sh
33+
```
34+
35+
### Using the Installer
36+
37+
Download the latest installer from the [BinktermPHP website](https://lovelybits.org/binktermphp) and run it. The installer handles file replacement, runs setup, and restarts all daemons automatically — no manual steps required.

docs/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ Specifications published by the LovlyNet Standards Council.
161161

162162
Release-specific upgrade notes, listed newest-first. See [UPGRADING_TEMPLATE.md](UPGRADING_TEMPLATE.md) for the document template.
163163

164+
- [Upgrading to 1.10.6](UPGRADING_1.10.6.md)
164165
- [Upgrading to 1.10.5](UPGRADING_1.10.5.md)
165166
- [Upgrading to 1.10.4](UPGRADING_1.10.4.md)
166167
- [Upgrading to 1.10.3](UPGRADING_1.10.3.md)

src/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class Version
3131
* This should be updated when releasing new versions.
3232
* Format: MAJOR.MINOR.PATCH
3333
*/
34-
private const VERSION = '1.10.5';
34+
private const VERSION = '1.10.6';
3535

3636
/**
3737
* Get the current application version

0 commit comments

Comments
 (0)