diff --git a/atlassian-connect-descriptor.cabal b/atlassian-connect-descriptor.cabal
--- a/atlassian-connect-descriptor.cabal
+++ b/atlassian-connect-descriptor.cabal
@@ -10,7 +10,7 @@
 -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             0.4.0.2
+version:             0.4.1.0
 
 -- A short (one-line) description of the package.
 synopsis:            Code that helps you create a valid Atlassian Connect Descriptor.
diff --git a/dist/build/test-descriptorStub/test-descriptorStub-tmp/test-descriptorStub.hs b/dist/build/test-descriptorStub/test-descriptorStub-tmp/test-descriptorStub.hs
deleted file mode 100644
--- a/dist/build/test-descriptorStub/test-descriptorStub-tmp/test-descriptorStub.hs
+++ /dev/null
@@ -1,5 +0,0 @@
-module Main ( main ) where
-import Distribution.Simple.Test.LibV09 ( stubMain )
-import Test ( tests )
-main :: IO ()
-main = stubMain tests
diff --git a/src/Data/Connect/Modules.hs b/src/Data/Connect/Modules.hs
--- a/src/Data/Connect/Modules.hs
+++ b/src/Data/Connect/Modules.hs
@@ -128,6 +128,7 @@
 -- the Atlassian Connect framework please see 'Modules'. You can also find more documentation on each of the modules.
 data ConfluenceModules = ConfluenceModules
    { confluenceWebPanels :: Maybe [WebPanel]
+   , confluenceWebItems  :: Maybe [WebItem]
    } deriving (Show, Generic)
 
 instance ToJSON ConfluenceModules where
@@ -159,7 +160,7 @@
 
 -- | Empty Confluence Modules; useful when you only want to define a few modules via Haskell record syntax.
 emptyConfluenceModules :: ConfluenceModules
-emptyConfluenceModules = ConfluenceModules Nothing
+emptyConfluenceModules = ConfluenceModules Nothing Nothing
 
 -- | Represents the weight of an element in a menu.
 type Weight = Integer
