Skip to content

Commit

Permalink
Merge pull request #33 from rohanjsh/chore/version-update
Browse files Browse the repository at this point in the history
chore:
  • Loading branch information
rohanjsh authored Nov 21, 2023
2 parents 0632690 + a69de64 commit 70f16a0
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 14 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@

# Changelog

# 1.0.3
- chore: update dependencies

# 1.0.2
- chore: update dependencies, ci flows

# 1.0.1+1
- feat: 3 new properties added `linkStyle`, `monospaceStyle`, `recognizer` 💙

# 1.0.0+4
- chore: readme update

# 1.0.0+1
🎉🎉🎉 It's time to celebrate! Our first stable release is finally here! 🎉🎉🎉

Expand Down
6 changes: 3 additions & 3 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ PODS:

DEPENDENCIES:
- Flutter (from `Flutter`)
- path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/ios`)
- path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
- url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`)

EXTERNAL SOURCES:
Flutter:
:path: Flutter
path_provider_foundation:
:path: ".symlinks/plugins/path_provider_foundation/ios"
:path: ".symlinks/plugins/path_provider_foundation/darwin"
url_launcher_ios:
:path: ".symlinks/plugins/url_launcher_ios/ios"

SPEC CHECKSUMS:
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
path_provider_foundation: c68054786f1b4f3343858c1e1d0caaded73f0be9
url_launcher_ios: 08a3dfac5fb39e8759aeb0abbd5d9480f30fc8b4
url_launcher_ios: bf5ce03e0e2088bad9cc378ea97fa0ed5b49673b

PODFILE CHECKSUM: ef19549a9bc3046e7bb7d2fab4d021637c0c58a3

Expand Down
3 changes: 2 additions & 1 deletion example/ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
97C146E61CF9000F007C117D /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1300;
LastUpgradeCheck = 1430;
ORGANIZATIONNAME = "";
TargetAttributes = {
97C146ED1CF9000F007C117D = {
Expand Down Expand Up @@ -244,6 +244,7 @@
files = (
);
inputPaths = (
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
);
name = "Thin Binary";
outputPaths = (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1300"
LastUpgradeVersion = "1430"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
4 changes: 2 additions & 2 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies:

# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.2
cupertino_icons: ^1.0.6
typeset:
path: ../

Expand All @@ -48,7 +48,7 @@ dev_dependencies:
# activated in the `analysis_options.yaml` file located at the root of your
# package. See that file for information about deactivating specific lint
# rules and activating additional ones.
flutter_lints: ^2.0.0
flutter_lints: ^3.0.1

# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
Expand Down
8 changes: 4 additions & 4 deletions lib/src/typeset.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class TypeSet extends StatelessWidget {
this.locale,
this.softWrap,
this.overflow,
this.textScaleFactor,
this.textScaler,
this.maxLines,
this.semanticsLabel,
this.textWidthBasis,
Expand Down Expand Up @@ -67,9 +67,9 @@ class TypeSet extends StatelessWidget {
final TextOverflow? overflow;

///[textScaleFactor] is the text scale factor of the text
///[textScaler] is the text scale factor of the text
final double? textScaleFactor;
final TextScaler? textScaler;

///[maxLines] is the max lines of the text
Expand Down Expand Up @@ -122,7 +122,7 @@ class TypeSet extends StatelessWidget {
locale: locale,
softWrap: softWrap,
overflow: overflow,
textScaleFactor: textScaleFactor,
textScaler: textScaler,
maxLines: maxLines,
semanticsLabel: semanticsLabel,
textWidthBasis: textWidthBasis,
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: typeset
description: WhatsApp like text formatting for you! -> Bold, Italic, Underline
version: 1.0.2
version: 1.0.3
repository: https://github.com/rohanjsh/typeset/
screenshots:
- description: "Examples of the typeset formatters"
Expand All @@ -13,8 +13,8 @@ environment:
dependencies:
flutter:
sdk: flutter
google_fonts: ^5.1.0
url_launcher: ^6.1.12
google_fonts: ^6.1.0
url_launcher: ^6.2.1

dev_dependencies:
flutter_test:
Expand Down

0 comments on commit 70f16a0

Please sign in to comment.