diff --git a/sumpy/p2p.py b/sumpy/p2p.py
index e7b47d1e68a464dba2cabc3e396ca0a9d09d389e..422a3c92330960aee0aed8c9cf2b5b16654a2bb8 100644
--- a/sumpy/p2p.py
+++ b/sumpy/p2p.py
@@ -370,7 +370,6 @@ class P2PMatrixBlockGenerator(SingleSrcTgtListP2PBase):
                     is_obj_array(targets) or isinstance(targets, (tuple, list))),
                 sources_is_obj_array=(
                     is_obj_array(sources) or isinstance(sources, (tuple, list))))
-        print(knl)
 
         return knl(queue, targets=targets, sources=sources,
                 tgtindices=tgtindices, srcindices=srcindices,
diff --git a/sumpy/qbx.py b/sumpy/qbx.py
index 52db31f0145b16a6fdc88482fbc0fba541659e23..50d4146484c051041e1382d1c8b833aa67bbea26 100644
--- a/sumpy/qbx.py
+++ b/sumpy/qbx.py
@@ -1,6 +1,9 @@
 from __future__ import division, absolute_import
 
-__copyright__ = "Copyright (C) 2012 Andreas Kloeckner"
+__copyright__ = """
+Copyright (C) 2012 Andreas Kloeckner
+Copyright (C) 2018 Alexandru Fikl
+"""
 
 __license__ = """
 Permission is hereby granted, free of charge, to any person obtaining a copy
diff --git a/sumpy/version.py b/sumpy/version.py
index 98f05a2db719067b04cb7b36457b24c84b4ddddf..7edeb71ff7b0f7325e82ac21ed43b7c3c5cebc15 100644
--- a/sumpy/version.py
+++ b/sumpy/version.py
@@ -29,4 +29,4 @@ VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS
 # branch name, so as to avoid conflicts with the master branch. Make sure
 # to reset this to the next number up with "master" before merging into
 # master.
-KERNEL_VERSION = ("master", 28)
+KERNEL_VERSION = ("master", 29)