Noda Time v1.0 released

Go get Noda Time 1.0!

Today is the end of the longest release cycle I’ve been personally involved in. On November 5th 2009, I announced my intention to write a port of Joda Time for .NET. The next day, Noda Time was born – with a lofty (foolhardy) set of targets.

Near the end of a talk *about* Noda Time this evening, I released Noda Time 1.0.0.

It’s taken three years, but I’m immensely proud of what we’ve managed to achieve. We’re far from "done" but I believe we’re already significantly ahead of most other date/time APIs I’ve seen in terms of providing a clean API which reduces *incidental* complexity while highlighting the *inherent* complexity of the domain. (This is a theme I’m becoming dogmatic about on various fronts.)

There’s more to do – I can’t see myself considering Noda Time to be "done" any time soon – but hopefully now we’ve got a stable release, we can start to build user momentum.

One point I raised at the DotNetDevNet presentation tonight was that there’s a definite benefit (in my very biased view) in just *looking into* Noda Time:

  • If you can’t use it in your production code, use it when prototyping
  • If you can’t use it in your prototype code, play with it in personal projects
  • If you can’t use it in personal projects, read the user guide to understand the concepts

I hope that simply looking at the various types that Noda Time providers will give you more insight into how you should be thinking about date and time handling in your code. While the BCL API has a lot of flaws, you can work around most of them if you make it crystal clear what your data means at every step. The type system will leave that largely ambiguous, but there’s nothing to stop you from naming your variables descriptively, and adding appropriate
comments.

Of course, I would far prefer it if you’d start using Noda Time and raising issues on how to make it better. Spread the word.

Oh, and if anyone from the BCL team is reading this and would like to include something like Noda Time into .NET 5 as a "next generation" date/time, I’d be *really* interested in talking to you :)

13 thoughts on “Noda Time v1.0 released”

  1. Job well done! This is such a pain point in development and Noda Time is a giant step in the direction of relieving that pain.

    Like

  2. This is great news and couldn’t have come at a better time for me. I’m working on a project that was originally UK only and now has to be international.

    I didn’t want to simply use DateTimeOffset because of the issues around daylight savings time, etc, so I will definitely be incorporating Noda Time into my project.

    Thanks for all your commitment!

    Like

  3. Good grief, he codes as well as helping the world sort out their .NET/C# issues. Looking forward to checking this out.

    Like

  4. @Matthew: It’s based on Joda Time. 310 wasn’t mature enough when we started.

    It’s more based on the Joda Time engine with a new API on top though – and I suspect it’s a better fit. My understanding of JSR-310 is that it’s rather more complex, trying to solve *all* time problems, forever. We’re deliberately limiting ourselves to trying to solve the problems of 99% of business developers.

    Like

  5. Cool. A couple API requests.

    1. It would be nice if Instant.FromUtc(…) supported milliseconds or at least fractional seconds.

    2. Any reason why you force the use of Utc in Instant.FromDateTimeUtc? why not Instant.FromDateTime(…) you can convert the parameter to UTC internally. I imagine a lot of users of the code will simply write Intanct.FromDateTimeUtc(dateTime.ToUniversalTime())

    p.s. You captcha doesn’t seem to be rendering in my version(23.0.1271.64 m) of Chrome for some reason.

    Like

  6. @Matthew: Please log API requests on the project page – it’s a much saner forum to discuss these things :)

    The CAPTCHA thing is a known issue that I can’t do anything about other than moving blog hosts…

    Like

  7. Nice to hear this! Jon, have you tried this version of NodaTime on Mono 3? I think some of the flaws you pointed out a while ago have been fixed, though I would like to know for sure.

    Thanks!

    Like

  8. @Marcelo: No, I haven’t yet – although I have reasonable hopes that it will solve at least some of the problems. I’m waiting for a stable binary to download…

    Like

Leave a comment