From 52e61e664bead8d9d4630d5a28468cdb852283bf Mon Sep 17 00:00:00 2001
From: Swee <sweeistaken@gmail.com>
Date: Sun, 20 Oct 2024 12:15:30 -0700
Subject: [PATCH] Update __init__.py

---
 scparseirc/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scparseirc/__init__.py b/scparseirc/__init__.py
index 75c037c..b6c1429 100644
--- a/scparseirc/__init__.py
+++ b/scparseirc/__init__.py
@@ -4,7 +4,7 @@ IRC Parser for the SugarCaneIRC family.
 import socket
 import ssl as ssl_module
 import threading
-__version__ = 0
+__version__ = "_TEST_"
 class SystemMessage: # System message object
     def __init__(self, content:str, user:str, typ:str, mention:bool, chan=None):
         self.content, self.user, self.type, self.mention, self.chan = content,user,typ,mention,chan