Skip to content

Commit

Permalink
Bump version, update to latest pcre2
Browse files Browse the repository at this point in the history
  • Loading branch information
pommicket committed Jul 18, 2024
1 parent 4d760a5 commit d37fe5d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,7 @@ Then run `make.bat release`.
<tr><td>2.6.2</td> <td>fix cursor position issue, nicer logging, status in title bar</td> <td>2023 Sep 24</td></tr>
<tr><td>2.7.0</td> <td>`.editorconfig` and local `.ted.cfg`</td> <td>2023 Oct 19</td></tr>
<tr><td>2.7.1</td> <td>bug fixes, auto-detect indentation</td> <td>2024 Feb 13</td></tr>
<tr><td>2.7.2</td> <td>bug fixes, `sync` setting</td> <td>2024 Jul 17</td></tr>
</table>

## License
Expand Down
2 changes: 1 addition & 1 deletion control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: ted
Version: 2.7.1
Version: 2.7.2
Section: text
Priority: optional
Architecture: amd64
Expand Down
2 changes: 1 addition & 1 deletion pcre2
Submodule pcre2 updated 178 files
2 changes: 1 addition & 1 deletion ted.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ extern "C" {
#include "command.h"

/// Version number
#define TED_VERSION "2.7.1"
#define TED_VERSION "2.7.2"
/// Maximum path size ted handles.
#define TED_PATH_MAX 1024
/// Config filename
Expand Down
4 changes: 2 additions & 2 deletions update-windows-installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

import uuid
import re
from datetime import datetime
import datetime

timestamp = datetime.utcnow()
timestamp = datetime.datetime.now(datetime.UTC)
# will break in 2100. FUCK YOU PEOPEL OF THE FUTURE!!
version_start = '%02d.%02d.%02d' % (timestamp.year % 100, timestamp.month, timestamp.day)
product_code = str(uuid.uuid4()).upper()
Expand Down
6 changes: 3 additions & 3 deletions windows_installer/ted/ted.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -620,15 +620,15 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:ted"
"ProductCode" = "8:{E8F7AF2B-C5BA-45C9-B402-06D279188DC1}"
"PackageCode" = "8:{D91C8E8F-A641-4035-98CB-DFFC707A9BFC}"
"ProductCode" = "8:{952FA867-111C-443C-9AFB-DA084083F038}"
"PackageCode" = "8:{BBBD2CF3-16E0-47E6-B64F-C1C73261D9F2}"
"UpgradeCode" = "8:{844F6C2B-DF3B-4A81-9BD5-603401BBA651}"
"AspNetVersion" = "8:2.0.50727.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:FALSE"
"InstallAllUsers" = "11:FALSE"
"ProductVersion" = "8:24.02.1301"
"ProductVersion" = "8:24.07.1801"
"Manufacturer" = "8:ted"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:"
Expand Down

0 comments on commit d37fe5d

Please sign in to comment.