diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,10 @@
-## [_Unreleased_](https://github.com/freckle/hspec-junit-formatter/compare/v1.0.3.0...main)
+## [_Unreleased_](https://github.com/freckle/hspec-junit-formatter/compare/v1.1.0.0...main)
 
 None
+
+## [v1.1.0.0](https://github.com/freckle/hspec-junit-formatter/compare/v1.0.3.0...v1.1.0.0)
+
+- Remove incorrectly-cased `Test.HSpec` modules
 
 ## [v1.0.3.0](https://github.com/freckle/hspec-junit-formatter/compare/v1.0.2.2...v1.0.3.0)
 
diff --git a/hspec-junit-formatter.cabal b/hspec-junit-formatter.cabal
--- a/hspec-junit-formatter.cabal
+++ b/hspec-junit-formatter.cabal
@@ -1,6 +1,6 @@
 cabal-version:      1.12
 name:               hspec-junit-formatter
-version:            1.0.3.0
+version:            1.1.0.0
 license:            MIT
 license-file:       LICENSE
 copyright:          2021 Renaissance Learning Inc
@@ -27,13 +27,10 @@
 library
     exposed-modules:
         Test.Hspec.Core.Runner.Ext
-        Test.HSpec.JUnit
         Test.Hspec.JUnit
         Test.Hspec.JUnit.Config
         Test.Hspec.JUnit.Config.Env
-        Test.HSpec.JUnit.Render
         Test.Hspec.JUnit.Render
-        Test.HSpec.JUnit.Schema
         Test.Hspec.JUnit.Schema
 
     hs-source-dirs:     library
diff --git a/library/Test/HSpec/JUnit.hs b/library/Test/HSpec/JUnit.hs
deleted file mode 100644
--- a/library/Test/HSpec/JUnit.hs
+++ /dev/null
@@ -1,34 +0,0 @@
-module Test.HSpec.JUnit
-  {-# DEPRECATED "Use Test.Hspec.JUnit instead" #-}
-  ( junitFormat
-  , runJUnitSpec
-  , configWith
-  ) where
-
-import Prelude
-
-import Data.Text (pack)
-import Test.Hspec.Core.Format
-import Test.Hspec.Core.Runner
-import Test.Hspec.Core.Spec (Spec)
-import Test.Hspec.JUnit hiding (junitFormat)
-import qualified Test.Hspec.JUnit as JUnit
-
-runJUnitSpec :: Spec -> (FilePath, String) -> Config -> IO Summary
-runJUnitSpec spec (path, name) config =
-  spec `runSpec` configWith filePath name config
-  where filePath = path <> "/" <> name <> "/test_results.xml"
-
-configWith :: FilePath -> String -> Config -> Config
-configWith filePath =
-  configWithJUnit
-    . setJUnitConfigOutputFile filePath
-    . defaultJUnitConfig
-    . pack
-
-junitFormat :: FilePath -> String -> FormatConfig -> IO Format
-junitFormat filePath =
-  JUnit.junitFormat
-    . setJUnitConfigOutputFile filePath
-    . defaultJUnitConfig
-    . pack
diff --git a/library/Test/HSpec/JUnit/Render.hs b/library/Test/HSpec/JUnit/Render.hs
deleted file mode 100644
--- a/library/Test/HSpec/JUnit/Render.hs
+++ /dev/null
@@ -1,6 +0,0 @@
-module Test.HSpec.JUnit.Render
-  {-# DEPRECATED "Use Test.Hspec.JUnit.Render instead" #-}
-  ( renderJUnit
-  ) where
-
-import Test.Hspec.JUnit.Render
diff --git a/library/Test/HSpec/JUnit/Schema.hs b/library/Test/HSpec/JUnit/Schema.hs
deleted file mode 100644
--- a/library/Test/HSpec/JUnit/Schema.hs
+++ /dev/null
@@ -1,9 +0,0 @@
-module Test.HSpec.JUnit.Schema
-  {-# DEPRECATED "Use Test.Hspec.JUnit.Schema instead" #-}
-  ( Suites(..)
-  , Suite(..)
-  , TestCase(..)
-  , Result(..)
-  ) where
-
-import Test.Hspec.JUnit.Schema
