Skip to content

Commit

Permalink
Merge branch 'master' into release/v0.30
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivansete-status authored Jul 1, 2024
2 parents 799e08c + cae0c7e commit 67ac594
Show file tree
Hide file tree
Showing 185 changed files with 1,455 additions and 1,116 deletions.
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ Add any other context or screenshots about the feature request here.

### Acceptance criteria
A list of tasks that need to be done for the issue to be considered resolved.

### Epic
Epic title and link the feature refers to.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ ifeq ($(POSTGRES), 1)
NIM_PARAMS := $(NIM_PARAMS) -d:postgres -d:nimDebugDlOpen
endif

ifeq ($(DEBUG_DISCV5), 1)
NIM_PARAMS := $(NIM_PARAMS) -d:debugDiscv5
endif

clean: | clean-libbacktrace


Expand Down
5 changes: 1 addition & 4 deletions apps/chat2/chat2.nim
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
when not (compileOption("threads")):
{.fatal: "Please, compile this program with the --threads:on option!".}

when (NimMajor, NimMinor) < (1, 4):
{.push raises: [Defect].}
else:
{.push raises: [].}
{.push raises: [].}

import std/[strformat, strutils, times, options, random]
import
Expand Down
5 changes: 1 addition & 4 deletions apps/chat2bridge/chat2bridge.nim
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
when (NimMajor, NimMinor) < (1, 4):
{.push raises: [Defect].}
else:
{.push raises: [].}
{.push raises: [].}

import
std/[tables, times, strutils, hashes, sequtils],
Expand Down
5 changes: 1 addition & 4 deletions apps/liteprotocoltester/liteprotocoltester.nim
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
when (NimMajor, NimMinor) < (1, 4):
{.push raises: [Defect].}
else:
{.push raises: [].}
{.push raises: [].}

import
std/[options, strutils, os, sequtils, net],
Expand Down
Loading

0 comments on commit 67ac594

Please sign in to comment.