diff --git a/README.md b/README.md index bd4cf98..6c3f8e2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # DSL.SixtyFiveOhTwo: A 65C02 Assembly eDSL in Haskell -![Example image](https://raw.githubusercontent.com/Aearnus/dsl-sixty-five-oh-two/master/fancy_banner.png) +![Example image](https://raw.githubusercontent.com/Aearnus/sixty-five-oh-two/master/fancy_banner.png) _... shut up, show me the code!_ @@ -28,7 +28,7 @@ test3f2 :: Instruction test3f2 = replicateM_ 10 (inc (Accumulator)) ``` -Everything that this module exposes is in [src/DSL/SixtyFiveOhTwo.hs](https://github.com/Aearnus/dsl-sixty-five-oh-two/blob/master/src/DSL/SixtyFiveOhTwo.hs). A quick browse through this file will reveal the full extent of the features of this eDSL. +Everything that this module exposes is in [src/DSL/SixtyFiveOhTwo.hs](https://github.com/Aearnus/sixty-five-oh-two/blob/master/src/DSL/SixtyFiveOhTwo.hs). A quick browse through this file will reveal the full extent of the features of this eDSL. ## What is this? diff --git a/package.yaml b/package.yaml index 3246da8..25e76ca 100644 --- a/package.yaml +++ b/package.yaml @@ -1,6 +1,6 @@ -name: dsl-sixty-five-oh-two -version: 0.1.0.0 -github: "aearnus/dsl-sixty-five-oh-two" +name: sixty-five-oh-two +version: 1.0.0.0 +github: "aearnus/sixty-five-oh-two" license: MIT author: "Tyler Limkemann" maintainer: "tslimkemann42@gmail.com" @@ -17,7 +17,7 @@ category: DSL # To avoid duplicated efforts in documentation and dealing with the # complications of embedding Haddock markup inside cabal files, it is # common to point users to the README.md file. -description: An eDSL for writing 65(C)02 bytecode. Please see the README on GitHub at +description: An eDSL for writing 65(C)02 bytecode. Please see the README on GitHub at dependencies: - base >= 4.7 && < 5 @@ -30,7 +30,7 @@ library: source-dirs: src executables: - dsl-sixty-five-oh-two-exe: + sixty-five-oh-two-exe: main: Main.hs source-dirs: app ghc-options: @@ -38,10 +38,10 @@ executables: - -rtsopts - -with-rtsopts=-N dependencies: - - dsl-sixty-five-oh-two + - sixty-five-oh-two tests: - dsl-sixty-five-oh-two-test: + sixty-five-oh-two-test: main: Spec.hs source-dirs: test ghc-options: @@ -49,4 +49,4 @@ tests: - -rtsopts - -with-rtsopts=-N dependencies: - - dsl-sixty-five-oh-two + - sixty-five-oh-two