diff --git a/.gitignore b/.gitignore
index b0735e7..35e768f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,3 +4,5 @@ SOURCES/samba-4.13.1.tar.xz
 SOURCES/samba-4.13.1.tar.asc
 SOURCES/samba-4.13.2.tar.xz
 SOURCES/samba-4.13.2.tar.asc
+SOURCES/samba-4.13.3.tar.xz
+SOURCES/samba-4.13.3.tar.asc
diff --git a/SOURCES/fix-vfs-glusterfs-crash-in-write-behind-check.patch b/SOURCES/fix-vfs-glusterfs-crash-in-write-behind-check.patch
deleted file mode 100644
index a914aac..0000000
--- a/SOURCES/fix-vfs-glusterfs-crash-in-write-behind-check.patch
+++ /dev/null
@@ -1,83 +0,0 @@
-From 9613a98bb3dfb906060edc87fed537eef59f19f1 Mon Sep 17 00:00:00 2001
-From: Jeremy Allison <jra@samba.org>
-Date: Tue, 10 Nov 2020 10:18:18 -0800
-Subject: [PATCH] s3: modules: gluster. Fix the error I made in preventing
- talloc leaks from a function.
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-file_lines_parse() plays horrible tricks with
-the passed-in talloc pointers and the hierarcy
-which makes freeing hard to get right.
-
-As we know mem_ctx is freed by the caller, after
-calling file_lines_parse don't free on exit and let the caller
-handle it. This violates good Samba coding practice
-but we know we're not leaking here.
-
-BUG: https://bugzilla.samba.org/show_bug.cgi?id=14486
-
-Signed-off-by: Jeremy Allison <jra@samba.org>
-Reviewed-by: Guenther Deschner <gd@samba.org>
-
-Autobuild-User(master): Günther Deschner <gd@samba.org>
-Autobuild-Date(master): Wed Nov 11 15:02:27 UTC 2020 on sn-devel-184
-
-(cherry picked from commit 457b49c67803dd95abc8502c2a410fac273f6fba)
----
- source3/modules/vfs_glusterfs.c | 20 ++++++++++++--------
- 1 file changed, 12 insertions(+), 8 deletions(-)
-
-diff --git a/source3/modules/vfs_glusterfs.c b/source3/modules/vfs_glusterfs.c
-index bdfe35ced82..17e945f7e78 100644
---- a/source3/modules/vfs_glusterfs.c
-+++ b/source3/modules/vfs_glusterfs.c
-@@ -315,15 +315,25 @@ static int check_for_write_behind_translator(TALLOC_CTX *mem_ctx,
- 		return -1;
- 	}
- 
-+	/*
-+	 * file_lines_parse() plays horrible tricks with
-+	 * the passed-in talloc pointers and the hierarcy
-+	 * which makes freeing hard to get right.
-+	 *
-+	 * As we know mem_ctx is freed by the caller, after
-+	 * this point don't free on exit and let the caller
-+	 * handle it. This violates good Samba coding practice
-+	 * but we know we're not leaking here.
-+	 */
-+
- 	lines = file_lines_parse(buf,
- 				newlen,
- 				&numlines,
- 				mem_ctx);
- 	if (lines == NULL || numlines <= 0) {
--		TALLOC_FREE(option);
--		TALLOC_FREE(buf);
- 		return -1;
- 	}
-+	/* On success, buf is now a talloc child of lines !! */
- 
- 	for (i=0; i < numlines; i++) {
- 		if (strequal(lines[i], option)) {
-@@ -338,15 +348,9 @@ static int check_for_write_behind_translator(TALLOC_CTX *mem_ctx,
- 			"Please check the vfs_glusterfs(8) manpage for "
- 			"further details.\n",
- 			volume);
--		TALLOC_FREE(lines);
--		TALLOC_FREE(option);
--		TALLOC_FREE(buf);
- 		return -1;
- 	}
- 
--	TALLOC_FREE(lines);
--	TALLOC_FREE(option);
--	TALLOC_FREE(buf);
- 	return 0;
- }
- 
--- 
-2.27.0
-
-
diff --git a/SPECS/samba.spec b/SPECS/samba.spec
index 1c81d86..9f7537b 100644
--- a/SPECS/samba.spec
+++ b/SPECS/samba.spec
@@ -6,9 +6,9 @@
 # ctdb is enabled by default, you can disable it with: --without clustering
 %bcond_without clustering
 
-%define main_release 2
+%define main_release 1
 
-%define samba_version 4.13.2
+%define samba_version 4.13.3
 # This should be rc1 or nil
 %define pre_release %nil
 
@@ -116,7 +116,6 @@ Source100: ctdb.conf
 Source101: script.options
 
 Patch1: remove-talloc-ldb-requires-from-samba-policy.patch
-Patch2: fix-vfs-glusterfs-crash-in-write-behind-check.patch
 
 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
 
@@ -3844,6 +3843,9 @@ rm -rf %{buildroot}
 %endif
 
 %changelog
+* Tue Dec 15 2020 - Anoop C S <anoopcs@samba.org> - 4.13.3-1
+- v4.13.3 GA
+
 * Tue Dec 08 2020 - Anoop C S <anoopcs@samba.org> - 4.13.2-2
 - Fix crash in GlusterFS VFS module
 - resolves: https://bugzilla.samba.org/show_bug.cgi?id=14486