Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ANON-192 - Bump version, remove development branch support #98

Merged
merged 1 commit into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/build-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@ on:
- '*beta*'
branches:
- main
- development
pull_request:
branches:
- main
- development

env:
DEBIAN_FRONTEND: noninteractive
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: Build Docker Images
on:
pull_request:
branches:
- development
- main
workflow_dispatch:

Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/deploy-grafana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: Grafana Deploy

on:
workflow_dispatch:


env:
hc-url: https://95.217.159.249:13000/
Expand All @@ -16,7 +15,7 @@ jobs:
with:
fetch-depth: 0

- name: Deploy new version
- name: Deploy new version
uses: ./.github/actions/deploy
with:
image-tag: "none"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Dev Build Image and Deploy
on:
push:
branches:
- development
- main
workflow_dispatch:

env:
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dnl Copyright (c) 2007-2019, The Tor Project, Inc.
dnl See LICENSE for licensing information

AC_PREREQ([2.63])
AC_INIT([anon],[0.4.9.7-git])
AC_INIT([anon],[0.4.9.8-git])
AC_CONFIG_SRCDIR([src/app/main/anon_main.c])
AC_CONFIG_MACRO_DIR([m4])

Expand All @@ -18,7 +18,7 @@ AC_DEFINE_UNQUOTED([CONFIG_FLAGS], ["$configure_flags"], [Flags passed to config
# version number changes. Tor uses it to make sure that it
# only shuts down for missing "required protocols" when those protocols
# are listed as required by a consensus after this date.
AC_DEFINE(APPROX_RELEASE_DATE, ["2024-08-01"], # for 0.4.9.7-git
AC_DEFINE(APPROX_RELEASE_DATE, ["2024-10-03"], # for 0.4.9.8-git
[Approximate date when this software was released. (Updated when the version changes.)])

# "foreign" means we don't follow GNU package layout standards
Expand Down
2 changes: 1 addition & 1 deletion contrib/win32build/anon-mingw.nsi.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
!include "LogicLib.nsh"
!include "FileFunc.nsh"
!insertmacro GetParameters
!define VERSION "0.4.9.7-git"
!define VERSION "0.4.9.8-git"
!define INSTALLER "tor-${VERSION}-win32.exe"
!define WEBSITE "https://www.torproject.org/"
!define LICENSE "LICENSE"
Expand Down
Loading