diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index b1a6b49..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,6 +0,0 @@
-node_modules/
-
-# Editor bak files
-*~
-*.bak
-*.orig
diff --git a/debian/changelog b/debian/changelog
index 80822e9..e41d9ac 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+node-jison-lex (0.3.4+git20140331.1.28aa5ac-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Sun, 17 Apr 2022 10:32:26 -0000
+
 node-jison-lex (0.3.4-3) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/patches/disable-2-tests.patch b/debian/patches/disable-2-tests.patch
index 2de0758..24f026f 100644
--- a/debian/patches/disable-2-tests.patch
+++ b/debian/patches/disable-2-tests.patch
@@ -5,9 +5,11 @@ Bug-Debian: https://bugs.debian.org/918420
 Forwarded: https://github.com/zaach/jison-lex/issues/27
 Last-Update: 2019-01-17
 
---- a/tests/regexplexer.js
-+++ b/tests/regexplexer.js
-@@ -301,6 +301,7 @@
+Index: node-jison-lex/tests/regexplexer.js
+===================================================================
+--- node-jison-lex.orig/tests/regexplexer.js
++++ node-jison-lex/tests/regexplexer.js
+@@ -301,6 +301,7 @@ exports["test yylloc"] = function() {
      assert.equal(lexer.yylloc.last_column, 1);
  };
  
@@ -15,7 +17,7 @@ Last-Update: 2019-01-17
  exports["test more()"] = function() {
      var dict = {
          rules: [
-@@ -325,6 +326,7 @@
+@@ -325,6 +326,7 @@ exports["test more()"] = function() {
      assert.equal(lexer.lex(), "X");
      assert.equal(lexer.lex(), "EOF");
  };
@@ -23,7 +25,7 @@ Last-Update: 2019-01-17
  
  exports["test defined token returns"] = function() {
      var tokens = {"2":"X", "3":"Y", "4":"EOF"};
-@@ -392,6 +394,7 @@
+@@ -392,6 +394,7 @@ exports["test module generator"] = funct
      assert.equal(lexer.lex(), "EOF");
  };
  
@@ -31,7 +33,7 @@ Last-Update: 2019-01-17
  exports["test generator with more complex lexer"] = function() {
      var dict = {
          rules: [
-@@ -420,6 +423,7 @@
+@@ -420,6 +423,7 @@ exports["test generator with more comple
      assert.equal(lexer.lex(), "X");
      assert.equal(lexer.lex(), "EOF");
  };